summaryrefslogtreecommitdiffstats
path: root/atc
diff options
context:
space:
mode:
authorpgoyette <pgoyette@NetBSD.org>2019-03-19 00:11:34 +0000
committerpgoyette <pgoyette@NetBSD.org>2019-03-19 00:11:34 +0000
commitd0d25ff8d270061da4175060b3a513f70bf46c0b (patch)
treea1f0e79991aef0da1ba0aa5dd901d6ef274160c2 /atc
parent899600a7444ddbdbbe192913dca6aaf7421c2487 (diff)
downloadbsdgames-darwin-d0d25ff8d270061da4175060b3a513f70bf46c0b.tar.gz
bsdgames-darwin-d0d25ff8d270061da4175060b3a513f70bf46c0b.tar.zst
bsdgames-darwin-d0d25ff8d270061da4175060b3a513f70bf46c0b.zip
Report the users score _after_ the game has ended and the screen has
been restored to pre-game state. Otherwise, the user gets a message that their score did (or more likely, did not) improve over their previous score, yet the user has no indication of what the current score actually was!
Diffstat (limited to 'atc')
-rw-r--r--atc/log.c10
1 files changed, 8 insertions, 2 deletions
diff --git a/atc/log.c b/atc/log.c
index c0bdc618..08e092bb 100644
--- a/atc/log.c
+++ b/atc/log.c
@@ -1,4 +1,4 @@
-/* $NetBSD: log.c,v 1.23 2017/01/10 20:40:53 christos Exp $ */
+/* $NetBSD: log.c,v 1.24 2019/03/19 00:11:34 pgoyette Exp $ */
/*-
* Copyright (c) 1990, 1993
@@ -46,7 +46,7 @@
#if 0
static char sccsid[] = "@(#)log.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: log.c,v 1.23 2017/01/10 20:40:53 christos Exp $");
+__RCSID("$NetBSD: log.c,v 1.24 2019/03/19 00:11:34 pgoyette Exp $");
#endif
#endif /* not lint */
@@ -161,6 +161,12 @@ log_score(int list_em)
struct utsname lname;
long offset;
+ if (safe_planes == 1)
+ printf("You directed 1 plane safely to its destination.\n\n");
+ else
+ printf("You directed %d planes safely to their destinations.\n\n",
+ safe_planes);
+
if (score_fp == NULL) {
warnx("no score file available");
return (-1);