From: Timo Korvola Date: Sun, 18 Feb 2018 14:28:02 +0000 (+0200) Subject: Forgot to update dfrotz after interface change. X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=6ed2fc6e38aa437d1add4a4701b7bd5633d361f2;p=liskon_frotz.git Forgot to update dfrotz after interface change. dfrotz is not built by default, so it is easy to miss errors there. --- diff --git a/src/dumb/dumb_output.c b/src/dumb/dumb_output.c index 95252ad..f8b6382 100644 --- a/src/dumb/dumb_output.c +++ b/src/dumb/dumb_output.c @@ -116,9 +116,11 @@ void os_set_cursor(int row, int col) cursor_row = h_screen_rows - 1; } -void os_repaint_window(int win, int ypos_old, int ypos_new, int xpos, +bool os_repaint_window(int win, int ypos_old, int ypos_new, int xpos, int ysize, int xsize) -{} +{ + return FALSE; +} /* Set a cell and update screen_changes. */ static void dumb_set_cell(int row, int col, cell c)