diff options
author | Paul Janzen <pjanzen@cvs.openbsd.org> | 2001-08-17 22:28:56 +0000 |
---|---|---|
committer | Paul Janzen <pjanzen@cvs.openbsd.org> | 2001-08-17 22:28:56 +0000 |
commit | f32d7c484e583c99f060009edb140c1254989583 (patch) | |
tree | d62609033e87426c25531aaf657dc2a399c8ad7d /games | |
parent | 5f794f8c1c7a349faa97c6ef092a96fcf48ca094 (diff) |
'y' and 'Y' both mean yes.
Diffstat (limited to 'games')
-rw-r--r-- | games/rogue/score.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/games/rogue/score.c b/games/rogue/score.c index c530ab2fb29..2bac8b5248a 100644 --- a/games/rogue/score.c +++ b/games/rogue/score.c @@ -1,4 +1,4 @@ -/* $OpenBSD: score.c,v 1.6 2001/08/10 18:32:46 pjanzen Exp $ */ +/* $OpenBSD: score.c,v 1.7 2001/08/17 22:28:55 pjanzen Exp $ */ /* $NetBSD: score.c,v 1.5 1995/04/22 10:28:26 cgd Exp $ */ /* @@ -41,7 +41,7 @@ #if 0 static char sccsid[] = "@(#)score.c 8.1 (Berkeley) 5/31/93"; #else -static char rcsid[] = "$OpenBSD: score.c,v 1.6 2001/08/10 18:32:46 pjanzen Exp $"; +static char rcsid[] = "$OpenBSD: score.c,v 1.7 2001/08/17 22:28:55 pjanzen Exp $"; #endif #endif /* not lint */ @@ -161,6 +161,7 @@ quit(from_intrpt) char buf[128]; short i, orow, ocol; boolean mc; + short ch; md_ignore_signals(); @@ -176,7 +177,7 @@ quit(from_intrpt) } check_message(); message("really quit?", 1); - if (rgetchar() != 'y') { + if ((ch = rgetchar()) != 'y' && ch != 'Y') { md_heed_signals(); check_message(); if (from_intrpt) { |