1
0
mirror of https://git.zap.org.au/git/trader.git synced 2024-07-21 16:14:14 -04:00

Replace calls to wprintw() with waddstr() where appropriate

This commit is contained in:
John Zaitseff 2011-07-11 08:05:36 +10:00
parent 1995a6a7b0
commit 85e09ab4f2

View File

@ -440,9 +440,9 @@ bool getanswer (WINDOW *win)
curs_set(CURS_OFF); curs_set(CURS_OFF);
if (key == 'Y') { if (key == 'Y') {
wprintw(win, "Yes."); waddstr(win, "Yes.");
} else { } else {
wprintw(win, "No."); waddstr(win, "No.");
} }
wrefresh(win); wrefresh(win);