summaryrefslogtreecommitdiffstats
path: root/atc
diff options
context:
space:
mode:
authorjnemeth <jnemeth@NetBSD.org>2006-06-07 09:22:52 +0000
committerjnemeth <jnemeth@NetBSD.org>2006-06-07 09:22:52 +0000
commitd983034d72c0dc19e69d18f64b56d6e92469dc80 (patch)
tree149110885f27374004f9b6e86419a6a959dd0fd4 /atc
parent5bd7d8ce4b9b18d34d23de28eb558dfdab997eb1 (diff)
downloadbsdgames-darwin-d983034d72c0dc19e69d18f64b56d6e92469dc80.tar.gz
bsdgames-darwin-d983034d72c0dc19e69d18f64b56d6e92469dc80.tar.zst
bsdgames-darwin-d983034d72c0dc19e69d18f64b56d6e92469dc80.zip
bracket else block
Diffstat (limited to 'atc')
-rw-r--r--atc/graphics.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/atc/graphics.c b/atc/graphics.c
index 5f844804..3e082ad2 100644
--- a/atc/graphics.c
+++ b/atc/graphics.c
@@ -1,4 +1,4 @@
-/* $NetBSD: graphics.c,v 1.12 2005/08/10 17:53:28 rpaulo Exp $ */
+/* $NetBSD: graphics.c,v 1.13 2006/06/07 09:22:52 jnemeth Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -46,7 +46,7 @@
#if 0
static char sccsid[] = "@(#)graphics.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: graphics.c,v 1.12 2005/08/10 17:53:28 rpaulo Exp $");
+__RCSID("$NetBSD: graphics.c,v 1.13 2006/06/07 09:22:52 jnemeth Exp $");
#endif
#endif /* not lint */
@@ -388,9 +388,10 @@ loser(const PLANE *p, const char *s)
if (p == NULL)
(void)wprintw(input, "%s\n\nHit space for top players list...",
s);
- else
+ else {
(void)wprintw(input, "Plane '%c' %s\n\n", name(p), s);
(void)wprintw(input, "Hit space for top players list...");
+ }
(void)wrefresh(input);
(void)fflush(stdout);
while ((c = getchar()) != EOF && c != ' ')