aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/moves
diff options
context:
space:
mode:
authorPaul Gilbert2017-02-16 21:42:42 -0500
committerPaul Gilbert2017-02-16 21:42:42 -0500
commit314c795d21ce1e67f8b3a73179b8042bc2e64487 (patch)
tree8e5e5bc2d55868a2dde195cbb0b1bfb142cab336 /engines/titanic/moves
parentd56e4e4584ccb7d0741118da0ffb61129c767bee (diff)
downloadscummvm-rg350-314c795d21ce1e67f8b3a73179b8042bc2e64487.tar.gz
scummvm-rg350-314c795d21ce1e67f8b3a73179b8042bc2e64487.tar.bz2
scummvm-rg350-314c795d21ce1e67f8b3a73179b8042bc2e64487.zip
TITANIC: Cleanup of movie flags
Diffstat (limited to 'engines/titanic/moves')
-rw-r--r--engines/titanic/moves/enter_sec_class_state.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/titanic/moves/enter_sec_class_state.cpp b/engines/titanic/moves/enter_sec_class_state.cpp
index af2bc4ac00..9ea8ae732a 100644
--- a/engines/titanic/moves/enter_sec_class_state.cpp
+++ b/engines/titanic/moves/enter_sec_class_state.cpp
@@ -85,9 +85,9 @@ bool CEnterSecClassState::StatusChangeMsg(CStatusChangeMsg *msg) {
if (msg->_newStatus != 3) {
if (msg->_newStatus == 2 && _mode == 1)
- playMovie(0, 10, MOVIE_NOTIFY_OBJECT | MOVIE_GAMESTATE);
+ playMovie(0, 10, MOVIE_NOTIFY_OBJECT | MOVIE_WAIT_FOR_FINISH);
else if (msg->_newStatus == 1)
- playMovie(11, 21, MOVIE_NOTIFY_OBJECT | MOVIE_GAMESTATE);
+ playMovie(11, 21, MOVIE_NOTIFY_OBJECT | MOVIE_WAIT_FOR_FINISH);
}
_cursorId = msg->_newStatus == 2 ? CURSOR_MOVE_FORWARD : CURSOR_INVALID;