diff arogue7/main.c @ 147:301ed6992c2e

arogue7, xrogue: put newlines at the end of startup messages.
author John "Elwin" Edwards
date Wed, 20 May 2015 15:15:29 -0400
parents aac28331e71d
children cadff8f047a1
line wrap: on
line diff
--- a/arogue7/main.c	Wed May 20 12:51:16 2015 -0400
+++ b/arogue7/main.c	Wed May 20 15:15:29 2015 -0400
@@ -175,9 +175,9 @@
 	atoi(getenv("SEED")) :
 	lowtime + getpid());
     if (wizard)
-	printf("Hello %s, welcome to dungeon #%d", whoami, dnum);
+	printf("Hello %s, welcome to dungeon #%d\n", whoami, dnum);
     else
-	printf("Hello %s, just a moment while I dig the dungeon...", whoami);
+	printf("Hello %s, just a moment while I dig the dungeon...\n", whoami);
     fflush(stdout);
     seed = dnum;
     md_srand(seed);