diff options
author | Paul Gilbert | 2017-09-07 20:37:02 -0400 |
---|---|---|
committer | Paul Gilbert | 2017-09-07 20:37:02 -0400 |
commit | aceff5852e7f769773f5932c46201ab2c3299a9c (patch) | |
tree | f01393f5a23beea45c79421b397a72526ab6cbba /engines | |
parent | 2b7b75f9a8d9a3724085f35a2689b53c7eef4dfa (diff) | |
download | scummvm-rg350-aceff5852e7f769773f5932c46201ab2c3299a9c.tar.gz scummvm-rg350-aceff5852e7f769773f5932c46201ab2c3299a9c.tar.bz2 scummvm-rg350-aceff5852e7f769773f5932c46201ab2c3299a9c.zip |
TITANIC: Fix hiding SGT toilet after turning it on & off
Diffstat (limited to 'engines')
-rw-r--r-- | engines/titanic/game/sgt/toilet.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/game/sgt/toilet.cpp b/engines/titanic/game/sgt/toilet.cpp index 0f796c2b9d..0bcb08fe38 100644 --- a/engines/titanic/game/sgt/toilet.cpp +++ b/engines/titanic/game/sgt/toilet.cpp @@ -64,7 +64,7 @@ bool CToilet::TurnOff(CTurnOff *msg) { _isClosed = true; _startFrame = 11; _endFrame = 18; - playMovie(11, 18, MOVIE_WAIT_FOR_FINISH); + playMovie(11, 18, MOVIE_NOTIFY_OBJECT | MOVIE_WAIT_FOR_FINISH); playSound("b#1.wav"); } |