Mercurial > hg > early-roguelike
diff rogue4/main.c @ 32:2dcd75e6a736
Fix the playback bug which was caused by CR/LF confusion
author | elwin |
---|---|
date | Tue, 16 Feb 2010 00:03:06 +0000 |
parents | 09da55b986ca |
children | 24e6beb9e7aa |
line wrap: on
line diff
--- a/rogue4/main.c Sat Feb 13 16:25:29 2010 +0000 +++ b/rogue4/main.c Tue Feb 16 00:03:06 2010 +0000 @@ -283,6 +283,7 @@ signal(SIGTSTP, tstp); #endif crmode(); + nonl(); noecho(); clearok(curscr, TRUE); wrefresh(curscr); @@ -403,6 +404,7 @@ md_shellescape(); noecho(); + nonl(); crmode(); in_shell = FALSE; clearok(stdscr, TRUE);