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")) :
|
atoi(getenv("SEED")) :
|
||||||
lowtime + getpid());
|
lowtime + getpid());
|
||||||
if (wizard)
|
if (wizard)
|
||||||
printf("Hello %s, welcome to dungeon #%d", whoami, dnum);
|
printf("Hello %s, welcome to dungeon #%d\n", whoami, dnum);
|
||||||
else
|
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);
|
fflush(stdout);
|
||||||
seed = dnum;
|
seed = dnum;
|
||||||
md_srand(seed);
|
md_srand(seed);
|
||||||
|
|
|
||||||
|
|
@ -166,9 +166,9 @@ char **envp;
|
||||||
seed = (int) time(&now) + getpid();
|
seed = (int) time(&now) + getpid();
|
||||||
}
|
}
|
||||||
if (wizard)
|
if (wizard)
|
||||||
printf("Hello %s, welcome to dungeon #%d", whoami, seed);
|
printf("Hello %s, welcome to dungeon #%d\n", whoami, seed);
|
||||||
else
|
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);
|
fflush(stdout);
|
||||||
|
|
||||||
md_srand(seed);
|
md_srand(seed);
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue