summaryrefslogtreecommitdiffstats
path: root/worm
diff options
context:
space:
mode:
authorhubertf <hubertf@NetBSD.org>1999-08-08 03:08:08 +0000
committerhubertf <hubertf@NetBSD.org>1999-08-08 03:08:08 +0000
commit3da7ebf6e412f879185cd16af8206fab301b24d5 (patch)
tree3410ba59342c7e98cd43edf33e205bc30db188bc /worm
parent21e3393acafe7ca087d2267b7955436ee3e6c248 (diff)
downloadbsdgames-darwin-3da7ebf6e412f879185cd16af8206fab301b24d5.tar.gz
bsdgames-darwin-3da7ebf6e412f879185cd16af8206fab301b24d5.tar.zst
bsdgames-darwin-3da7ebf6e412f879185cd16af8206fab301b24d5.zip
Print score after endwin() so it isn't deleted immediately afterward.
Diffstat (limited to 'worm')
-rw-r--r--worm/worm.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/worm/worm.c b/worm/worm.c
index 1d7e187f..618436c5 100644
--- a/worm/worm.c
+++ b/worm/worm.c
@@ -1,4 +1,4 @@
-/* $NetBSD: worm.c,v 1.10 1999/07/28 23:09:45 hubertf Exp $ */
+/* $NetBSD: worm.c,v 1.11 1999/08/08 03:08:08 hubertf Exp $ */
/*
* Copyright (c) 1980, 1993
@@ -43,7 +43,7 @@ __COPYRIGHT("@(#) Copyright (c) 1980, 1993\n\
#if 0
static char sccsid[] = "@(#)worm.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: worm.c,v 1.10 1999/07/28 23:09:45 hubertf Exp $");
+__RCSID("$NetBSD: worm.c,v 1.11 1999/08/08 03:08:08 hubertf Exp $");
#endif
#endif /* not lint */
@@ -183,6 +183,11 @@ leave(dummy)
int dummy;
{
endwin();
+
+ if (dummy == 0){ /* called via crash() */
+ printf("\nWell, you ran into something and the game is over.\n");
+ printf("Your final score was %d\n\n", score);
+ }
exit(0);
}
@@ -298,8 +303,6 @@ crash()
clear();
move(23, 0);
refresh();
- printf("Well, you ran into something and the game is over.\n");
- printf("Your final score was %d\n", score);
leave(0);
}