arogue7, xrogue: put newlines at the end of startup messages.
This commit is contained in:
parent
faa24df096
commit
053a248658
2 changed files with 4 additions and 4 deletions
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue