aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/game.cpp
diff options
context:
space:
mode:
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 4bc95d78cf..b22721a024 100644
--- a/engines/gob/game.cpp
+++ b/engines/gob/game.cpp
@@ -77,6 +77,7 @@ Game::Game(GobEngine *vm) : _vm(vm) {
_handleMouse = 0;
_forceHandleMouse = 0;
_menuLevel = 0;
+ _noScroll = true;
_tempStr[0] = 0;
_curImaFile[0] = 0;
@@ -292,7 +293,7 @@ void Game::evaluateScroll(int16 x, int16 y) {
if ((_handleMouse == 0) || (_menuLevel > 0))
return;
- if (_vm->_global->_videoMode != 0x14)
+ if (_noScroll || (_vm->_global->_videoMode != 0x14))
return;
if ((x == 0) && (_vm->_draw->_scrollOffsetX > 0)) {