Add a dummy os_repaint_window to DOS version.
authorTimo Korvola <tkorvola@iki.fi>
Tue, 20 Feb 2018 16:47:28 +0000 (18:47 +0200)
committerTimo Korvola <tkorvola@iki.fi>
Tue, 20 Feb 2018 16:47:28 +0000 (18:47 +0200)
Untested, as I don't have the compiler for it.

src/dos/bcscreen.c

index 0cd60914b070a990f00ae49869a2d400afa338cb..4e07d1af72a98da86248335e10dab6e66e92817d 100644 (file)
@@ -301,3 +301,9 @@ void os_scroll_area (int top, int left, int bottom, int right, int units)
                    clear_line (y, left, right);
 
 }/* os_scroll_area */
+
+bool os_repaint_window(int win, int ypos_old, int ypos_new, int xpos,
+                       int ysize, int xsize)
+{
+    return FALSE;
+}