From 6ed2fc6e38aa437d1add4a4701b7bd5633d361f2 Mon Sep 17 00:00:00 2001 From: Timo Korvola Date: Sun, 18 Feb 2018 16:28:02 +0200 Subject: [PATCH] Forgot to update dfrotz after interface change. dfrotz is not built by default, so it is easy to miss errors there. --- src/dumb/dumb_output.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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) -- 2.34.1