diff options
author | uruk | 2013-09-16 14:10:31 +0200 |
---|---|---|
committer | uruk | 2013-09-16 14:10:31 +0200 |
commit | 3f19e7a0fbf5da196e37438914e574cc6aee99c6 (patch) | |
tree | 290bf50f795c7725c4421d308e4a7a43e3f24b28 | |
parent | 9d259d0a07f0aefc4488eb2306560760cc486354 (diff) | |
download | scummvm-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.cpp | 2 |
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; } |