aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoruruk2013-09-16 14:10:31 +0200
committeruruk2013-09-16 14:10:31 +0200
commit3f19e7a0fbf5da196e37438914e574cc6aee99c6 (patch)
tree290bf50f795c7725c4421d308e4a7a43e3f24b28
parent9d259d0a07f0aefc4488eb2306560760cc486354 (diff)
downloadscummvm-rg350-3f19e7a0fbf5da196e37438914e574cc6aee99c6.tar.gz
scummvm-rg350-3f19e7a0fbf5da196e37438914e574cc6aee99c6.tar.bz2
scummvm-rg350-3f19e7a0fbf5da196e37438914e574cc6aee99c6.zip
AVALANCHE: Repair exit condition of the main loop.
-rw-r--r--engines/avalanche/avalanche.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/avalanche/avalanche.cpp b/engines/avalanche/avalanche.cpp
index 24e5f56dd1..75ab53f870 100644
--- a/engines/avalanche/avalanche.cpp
+++ b/engines/avalanche/avalanche.cpp
@@ -589,7 +589,7 @@ Common::Error AvalancheEngine::run() {
// break;
//}
- } while (!shouldQuit());
+ } while (!_gyro->_letMeOut && !shouldQuit());
return Common::kNoError;
}