diff options
-rw-r--r-- | engines/titanic/game_manager.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/titanic/game_manager.cpp b/engines/titanic/game_manager.cpp index 9e107c92b9..fb05705347 100644 --- a/engines/titanic/game_manager.cpp +++ b/engines/titanic/game_manager.cpp @@ -220,6 +220,9 @@ void CGameManager::updateMovies() { if (movie->_handled) continue; + // Flag the movie to have been handled + movie->_handled = true; + CMovieEventList eventsList; if (!movie->handleEvents(eventsList)) movie->removeFromPlayingMovies(); @@ -247,8 +250,6 @@ void CGameManager::updateMovies() { eventsList.remove(movieEvent); } - // Flag the movie as having been handled - movie->_handled = true; repeatFlag = true; break; } |