# HG changeset patch # User John "Elwin" Edwards # Date 1432140676 14400 # Node ID 5a77931393f44c9d4ba45c6eb69f37173227e55c # Parent aac28331e71de4bdb1fe3724e1cd2c21bfe8bc8d xrogue: add an exit prompt. This gives the player a chance to see the high score list when playing via dgamelaunch. diff -r aac28331e71d -r 5a77931393f4 xrogue/rip.c --- a/xrogue/rip.c Wed May 20 08:42:17 2015 -0400 +++ b/xrogue/rip.c Wed May 20 12:51:16 2015 -0400 @@ -554,6 +554,12 @@ else printf("\n"); } } + if (flags != SCOREIT) + { + printf("\n[Press return to exit]"); + fflush(stdout); + fgets(prbuf,80,stdin); + } /* if (prflags == EDITSCORE) endwin();*/ /* End editing windowing */ } fseek(outf, 0L, SEEK_SET);