diff options
author | Paul Gilbert | 2018-11-24 17:19:55 -0800 |
---|---|---|
committer | Paul Gilbert | 2018-12-08 19:05:59 -0800 |
commit | c2625264fb4e0a0abde96257ea86c83dde60fad2 (patch) | |
tree | 31e171f162b697ce1b82d14488812c9ff4625828 | |
parent | 77468312de507fcd7e01c95f1135afc33a6f4b24 (diff) | |
download | scummvm-rg350-c2625264fb4e0a0abde96257ea86c83dde60fad2.tar.gz scummvm-rg350-c2625264fb4e0a0abde96257ea86c83dde60fad2.tar.bz2 scummvm-rg350-c2625264fb4e0a0abde96257ea86c83dde60fad2.zip |
GLK: Change int 0 to false
-rw-r--r-- | engines/glk/windows.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/glk/windows.cpp b/engines/glk/windows.cpp index 1e53f25ef1..58a1648b5c 100644 --- a/engines/glk/windows.cpp +++ b/engines/glk/windows.cpp @@ -411,7 +411,7 @@ void Windows::redraw() { if (_moreFocus) refocus(_focusWin); - _forceRedraw = 0; + _forceRedraw = false; } void Windows::redrawRect(const Rect &r) { |