diff options
| author | mycroft <mycroft@NetBSD.org> | 1993-08-10 02:20:52 +0000 |
|---|---|---|
| committer | mycroft <mycroft@NetBSD.org> | 1993-08-10 02:20:52 +0000 |
| commit | ce005fee278db4f3879faeab5c9f12ab2ffe8338 (patch) | |
| tree | 168fedb95a7ded332e90daac0d8c980efbf18954 | |
| parent | cebdbd02f06db663af126129c97e0f47e0e15dae (diff) | |
| download | bsdgames-darwin-ce005fee278db4f3879faeab5c9f12ab2ffe8338.tar.gz bsdgames-darwin-ce005fee278db4f3879faeab5c9f12ab2ffe8338.zip | |
Use '\a', not CTRL('g').
| -rw-r--r-- | sail/pl_7.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sail/pl_7.c b/sail/pl_7.c index b0bbb0e6..cb2bcd00 100644 --- a/sail/pl_7.c +++ b/sail/pl_7.c @@ -33,7 +33,7 @@ #ifndef lint /*static char sccsid[] = "from: @(#)pl_7.c 5.7 (Berkeley) 2/28/91";*/ -static char rcsid[] = "$Id: pl_7.c,v 1.3 1993/08/10 02:15:07 mycroft Exp $"; +static char rcsid[] = "$Id: pl_7.c,v 1.4 1993/08/10 02:20:52 mycroft Exp $"; #endif /* not lint */ #include "player.h" @@ -236,7 +236,7 @@ register n; *p++ = c; (void) waddch(scroll_w, c); } else - (void) putchar(CTRL('g')); + (void) putchar('\a'); } } } |
