diff options
author | Paul Gilbert | 2017-09-24 09:46:27 -0400 |
---|---|---|
committer | Paul Gilbert | 2017-09-24 09:46:27 -0400 |
commit | 2bc23ba6c347a5e02b95e0bcf6cf5f47e14b5587 (patch) | |
tree | ece54d4d4b49451fb133c6a7b0290b78918668bf | |
parent | 4890dd446667c929e2bcc58af08fe39918bb6854 (diff) | |
download | scummvm-rg350-2bc23ba6c347a5e02b95e0bcf6cf5f47e14b5587.tar.gz scummvm-rg350-2bc23ba6c347a5e02b95e0bcf6cf5f47e14b5587.tar.bz2 scummvm-rg350-2bc23ba6c347a5e02b95e0bcf6cf5f47e14b5587.zip |
TITANIC: Fix looking at broken pellerator after the first time
-rw-r--r-- | engines/titanic/game/broken_pellerator.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/titanic/game/broken_pellerator.cpp b/engines/titanic/game/broken_pellerator.cpp index 5de728481b..809cfb309e 100644 --- a/engines/titanic/game/broken_pellerator.cpp +++ b/engines/titanic/game/broken_pellerator.cpp @@ -142,9 +142,11 @@ bool CBrokenPellerator::MovieEndMsg(CMovieEndMsg *msg) { switch (_closeAction) { case 1: changeView(_exitLeftView); + _closeAction = CLOSE_NONE; break; case 2: changeView(_exitRightView); + _closeAction = CLOSE_NONE; break; default: break; |