diff --git a/rogue4/command.c b/rogue4/command.c index b5f4235..728eec3 100644 --- a/rogue4/command.c +++ b/rogue4/command.c @@ -209,6 +209,7 @@ command() clrtoeol(); refresh(); endwin(); + printf("See you soon, %s!\n", whoami); exit(0); } when '.' : ; /* Rest command */ diff --git a/rogue4/rip.c b/rogue4/rip.c index 791d214..dc56eb7 100644 --- a/rogue4/rip.c +++ b/rogue4/rip.c @@ -272,6 +272,10 @@ register char monst; move(LINES-1, 0); refresh(); score(purse, 0, monst); + /* Make sure the output gets through */ + printf("[Press return to exit]\n"); + fflush(NULL); + getchar(); exit(0); }