From 314c795d21ce1e67f8b3a73179b8042bc2e64487 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Thu, 16 Feb 2017 21:42:42 -0500 Subject: TITANIC: Cleanup of movie flags --- engines/titanic/game/code_wheel.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/titanic/game/code_wheel.cpp') diff --git a/engines/titanic/game/code_wheel.cpp b/engines/titanic/game/code_wheel.cpp index 441fddec02..ebffd3b570 100644 --- a/engines/titanic/game/code_wheel.cpp +++ b/engines/titanic/game/code_wheel.cpp @@ -77,13 +77,13 @@ bool CodeWheel::MouseButtonDownMsg(CMouseButtonDownMsg *msg) { _state = (_state + 1) % 15; playMovie(START_FRAMES[_state], END_FRAMES[_state], - MOVIE_GAMESTATE | MOVIE_NOTIFY_OBJECT); + MOVIE_WAIT_FOR_FINISH | MOVIE_NOTIFY_OBJECT); } else { if (_state == _field108) _field110 = true; playMovie(START_FRAMES[14 - _state] + 68, END_FRAMES[14 - _state] + 68, - MOVIE_GAMESTATE | MOVIE_NOTIFY_OBJECT); + MOVIE_WAIT_FOR_FINISH | MOVIE_NOTIFY_OBJECT); _state = (_state <= 0) ? 14 : _state - 1; } -- cgit v1.2.3