aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/game.cpp
diff options
context:
space:
mode:
authorSven Hesse2008-05-04 01:02:27 +0000
committerSven Hesse2008-05-04 01:02:27 +0000
commit001adf1bb3dd354a9f383f261a8595300f218e8a (patch)
tree768cbff1bd7a589b2f1a8f864280b1840becc971 /engines/gob/game.cpp
parentdb04dd427d51aca647d68eb5a688273ee16f2fea (diff)
downloadscummvm-rg350-001adf1bb3dd354a9f383f261a8595300f218e8a.tar.gz
scummvm-rg350-001adf1bb3dd354a9f383f261a8595300f218e8a.tar.bz2
scummvm-rg350-001adf1bb3dd354a9f383f261a8595300f218e8a.zip
Enabled scrolling in Woodruff
svn-id: r31855
Diffstat (limited to 'engines/gob/game.cpp')
-rw-r--r--engines/gob/game.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/gob/game.cpp b/engines/gob/game.cpp
index 1d5ce65999..666f46fde1 100644
--- a/engines/gob/game.cpp
+++ b/engines/gob/game.cpp
@@ -311,7 +311,8 @@ void Game::evaluateScroll(int16 x, int16 y) {
if (_preventScroll || !_scrollHandleMouse || (_menuLevel > 0))
return;
- if (_noScroll || (_vm->_global->_videoMode != 0x14))
+ if (_noScroll ||
+ ((_vm->_global->_videoMode != 0x14) && (_vm->_global->_videoMode != 0x18)))
return;
if ((x == 0) && (_vm->_draw->_scrollOffsetX > 0)) {