aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/util.cpp
diff options
context:
space:
mode:
authorChristopher Page2008-06-24 23:19:23 +0000
committerChristopher Page2008-06-24 23:19:23 +0000
commitc14804e22f5171e6aa7b2cf5d383a4e28180aa7a (patch)
tree95f81d04ca309d76348ce86c71823693f310a379 /engines/gob/util.cpp
parentf878820bbee1e7e4659ca601872674082334fa63 (diff)
downloadscummvm-rg350-c14804e22f5171e6aa7b2cf5d383a4e28180aa7a.tar.gz
scummvm-rg350-c14804e22f5171e6aa7b2cf5d383a4e28180aa7a.tar.bz2
scummvm-rg350-c14804e22f5171e6aa7b2cf5d383a4e28180aa7a.zip
Added main menu dialog files. Gob is now using the new _quit flag
svn-id: r32771
Diffstat (limited to 'engines/gob/util.cpp')
-rw-r--r--engines/gob/util.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/util.cpp b/engines/gob/util.cpp
index 4987426fe0..d25628fe81 100644
--- a/engines/gob/util.cpp
+++ b/engines/gob/util.cpp
@@ -72,7 +72,7 @@ void Util::longDelay(uint16 msecs) {
_vm->_video->waitRetrace();
processInput();
delay(15);
- } while (!_vm->_quitRequested &&
+ } while (!_vm->_quit &&
((g_system->getMillis() * _vm->_global->_speedFactor) < time));
}
@@ -119,7 +119,7 @@ void Util::processInput(bool scroll) {
case Common::EVENT_KEYUP:
break;
case Common::EVENT_QUIT:
- _vm->_quitRequested = true;
+ _vm->_quit = true;
break;
default:
break;