From: David Griffith Date: Tue, 17 Jan 2012 22:33:39 +0000 (-0800) Subject: os_print_string no longer can be counted on for literal strings X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=92baaad3f8534f655496f329e3778ce9e82f9b6a;p=liskon_frotz.git os_print_string no longer can be counted on for literal strings --- diff --git a/src/curses/ux_init.c b/src/curses/ux_init.c index e57c1a0..c40db77 100644 --- a/src/curses/ux_init.c +++ b/src/curses/ux_init.c @@ -455,7 +455,7 @@ void os_reset_screen (void) os_stop_sample(0); os_set_text_style(0); - os_display_string((zchar *) "[Hit any key to exit.]"); + print_string("[Hit any key to exit.]\n"); os_read_key(0, FALSE); scrollok(stdscr, TRUE); scroll(stdscr); refresh(); endwin();