diff options
| -rw-r--r-- | engines/draci/game.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/draci/game.cpp b/engines/draci/game.cpp index 7c55489677..6051e0d651 100644 --- a/engines/draci/game.cpp +++ b/engines/draci/game.cpp @@ -160,6 +160,10 @@ Game::Game(DraciEngine *vm) : _vm(vm) { void Game::start() { while (!shouldQuit()) { + // Whenever the top-level loop is entered, it should not finish unless + // the exit is triggered by a script + _shouldExitLoop = false; + // If the scheduled room differs from the current one, do a room change if (_newRoom != _currentRoom._roomNum) { |
