diff options
author | Paul Gilbert | 2016-11-01 23:09:12 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-11-01 23:09:12 -0400 |
commit | 566742d4456446d154a4a5813b4f11c9937577f7 (patch) | |
tree | 937ca39baee0abb97813961c7e22d3854e9e7045 /engines/titanic/game | |
parent | 4a90553bf32c8537a6cccc5a9ab55ddb92f1f48c (diff) | |
download | scummvm-rg350-566742d4456446d154a4a5813b4f11c9937577f7.tar.gz scummvm-rg350-566742d4456446d154a4a5813b4f11c9937577f7.tar.bz2 scummvm-rg350-566742d4456446d154a4a5813b4f11c9937577f7.zip |
TITANIC: Cleanup calls to playMovie
Diffstat (limited to 'engines/titanic/game')
-rw-r--r-- | engines/titanic/game/computer.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/game/computer.cpp b/engines/titanic/game/computer.cpp index 3077b46178..9aa5db252c 100644 --- a/engines/titanic/game/computer.cpp +++ b/engines/titanic/game/computer.cpp @@ -54,7 +54,7 @@ bool CComputer::ActMsg(CActMsg *msg) { else if (msg->_action == "CD2") playMovie(50, 79, 0); else if (msg->_action == "STCD") - playMovie(80, 90, 4); + playMovie(80, 90, MOVIE_NOTIFY_OBJECT); _currentCD = msg->_action; _state = 0; |