Scope-eye.net Git Repository
/
liskon_frotz.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1c6f33c
)
Add a dummy os_repaint_window to DOS version.
author
Timo Korvola
<tkorvola@iki.fi>
Tue, 20 Feb 2018 16:47:28 +0000
(18:47 +0200)
committer
Timo 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
patch
|
blob
|
history
diff --git
a/src/dos/bcscreen.c
b/src/dos/bcscreen.c
index 0cd60914b070a990f00ae49869a2d400afa338cb..4e07d1af72a98da86248335e10dab6e66e92817d 100644
(file)
--- a/
src/dos/bcscreen.c
+++ b/
src/dos/bcscreen.c
@@
-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;
+}