aboutsummaryrefslogtreecommitdiff
path: root/engines/gob
diff options
context:
space:
mode:
authorChristopher Page2008-08-13 20:45:00 +0000
committerChristopher Page2008-08-13 20:45:00 +0000
commit8d8c46e36fade04d4452f0ce1fbdd3ee942ac898 (patch)
tree08a4ea79ffbb070f1b194ed0ef0fef8d374b90cf /engines/gob
parent2d31207a8169491647d8fa3baab7eadbfdfa1da9 (diff)
downloadscummvm-rg350-8d8c46e36fade04d4452f0ce1fbdd3ee942ac898.tar.gz
scummvm-rg350-8d8c46e36fade04d4452f0ce1fbdd3ee942ac898.tar.bz2
scummvm-rg350-8d8c46e36fade04d4452f0ce1fbdd3ee942ac898.zip
Cleanup: Got rid of _quit and _rtl variables in engine.h/.cpp which are not used anymore. Found some _quit flags in Agos and Gob and replaced with bool quit() where appropriate
svn-id: r33848
Diffstat (limited to 'engines/gob')
-rw-r--r--engines/gob/sound/sound.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/sound/sound.cpp b/engines/gob/sound/sound.cpp
index e0c18b155f..7b93003791 100644
--- a/engines/gob/sound/sound.cpp
+++ b/engines/gob/sound/sound.cpp
@@ -369,7 +369,7 @@ void Sound::blasterWaitEndPlay(bool interruptible, bool stopComp) {
if (stopComp)
_blaster->endComposition();
- while (_blaster->isPlaying() && !_vm->_quit) {
+ while (_blaster->isPlaying() && !_vm->quit()) {
if (interruptible && (_vm->_util->checkKey() == 0x11B)) {
WRITE_VAR(57, (uint32) -1);
return;