From 053a248658415709d2b890941f25f86cda347bca Mon Sep 17 00:00:00 2001 From: "John \"Elwin\" Edwards" Date: Wed, 20 May 2015 15:15:29 -0400 Subject: [PATCH] arogue7, xrogue: put newlines at the end of startup messages. --- arogue7/main.c | 4 ++-- xrogue/main.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arogue7/main.c b/arogue7/main.c index 0bd090d..bde3518 100644 --- a/arogue7/main.c +++ b/arogue7/main.c @@ -175,9 +175,9 @@ char **envp; 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); diff --git a/xrogue/main.c b/xrogue/main.c index 5ebf110..010d6ed 100644 --- a/xrogue/main.c +++ b/xrogue/main.c @@ -166,9 +166,9 @@ char **envp; 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);