Mercurial > hg > early-roguelike
diff xrogue/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/xrogue/main.c Wed May 20 12:51:16 2015 -0400 +++ b/xrogue/main.c Wed May 20 15:15:29 2015 -0400 @@ -166,9 +166,9 @@ seed = (int) time(&now) + getpid(); } if (wizard) - printf("Hello %s, welcome to dungeon #%d", whoami, seed); + printf("Hello %s, welcome to dungeon #%d\n", whoami, seed); 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); md_srand(seed);