aboutsummaryrefslogtreecommitdiff
path: root/games
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1999-08-30 08:08:03 +0000
committerPeter Wemm <peter@FreeBSD.org>1999-08-30 08:08:03 +0000
commit707e2947eafaa7a04ed96e7994323bde5a4c26ea (patch)
treed5d7f01ecc9b545e93c298f81fee239003bb2366 /games
parent9f3e1a8880a826c65a428ea9619c9793f4b46323 (diff)
downloadsrc-707e2947eafaa7a04ed96e7994323bde5a4c26ea.tar.gz
src-707e2947eafaa7a04ed96e7994323bde5a4c26ea.zip
flushok() isn't in ncurses.
Notes
Notes: svn path=/head/; revision=50629
Diffstat (limited to 'games')
-rw-r--r--games/robots/init_field.c2
-rw-r--r--games/robots/move.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/games/robots/init_field.c b/games/robots/init_field.c
index 888082cac235..c20665a663c2 100644
--- a/games/robots/init_field.c
+++ b/games/robots/init_field.c
@@ -77,7 +77,7 @@ init_field()
Dead = FALSE;
Waiting = FALSE;
- flushok(stdscr, TRUE);
+ /* flushok(stdscr, TRUE); */
Score = 0;
erase();
diff --git a/games/robots/move.c b/games/robots/move.c
index c381046d6465..4641d98317a7 100644
--- a/games/robots/move.c
+++ b/games/robots/move.c
@@ -158,7 +158,7 @@ over:
case 'W':
Waiting = TRUE;
leaveok(stdscr, TRUE);
- flushok(stdscr, FALSE);
+ /* flushok(stdscr, FALSE); */
goto ret;
case 't':
case 'T':