Forgot to update dfrotz after interface change.
authorTimo Korvola <tkorvola@iki.fi>
Sun, 18 Feb 2018 14:28:02 +0000 (16:28 +0200)
committerTimo Korvola <tkorvola@iki.fi>
Sun, 18 Feb 2018 14:28:02 +0000 (16:28 +0200)
dfrotz is not built by default, so it is easy to miss errors there.

src/dumb/dumb_output.c

index 95252ad6b5f5de4e1c3a7a9b41ffdd65d5747fb1..f8b6382f8020af13a9be9301e9d652b729a736d2 100644 (file)
@@ -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)