diff options
Diffstat (limited to 'games/rogue/use.c')
-rw-r--r-- | games/rogue/use.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/games/rogue/use.c b/games/rogue/use.c index a27ced4c1da..af359630ea7 100644 --- a/games/rogue/use.c +++ b/games/rogue/use.c @@ -1,4 +1,4 @@ -/* $OpenBSD: use.c,v 1.6 2003/06/03 03:01:41 millert Exp $ */ +/* $OpenBSD: use.c,v 1.7 2004/01/21 19:12:13 espie Exp $ */ /* $NetBSD: use.c,v 1.3 1995/04/22 10:28:38 cgd Exp $ */ /* @@ -37,7 +37,7 @@ #if 0 static char sccsid[] = "@(#)use.c 8.1 (Berkeley) 5/31/93"; #else -static const char rcsid[] = "$OpenBSD: use.c,v 1.6 2003/06/03 03:01:41 millert Exp $"; +static const char rcsid[] = "$OpenBSD: use.c,v 1.7 2004/01/21 19:12:13 espie Exp $"; #endif #endif /* not lint */ @@ -64,7 +64,7 @@ boolean see_invisible = 0; short extra_hp = 0; boolean detect_monster = 0; boolean con_mon = 0; -char *strange_feeling = "you have a strange feeling for a moment, then it passes"; +const char *strange_feeling = "you have a strange feeling for a moment, then it passes"; void quaff() @@ -580,7 +580,7 @@ go_blind() mvaddch(rogue.row, rogue.col, rogue.fchar); } -char * +const char * get_ench_color() { if (halluc) { |