diff options
author | Paul Gilbert | 2017-06-21 21:50:27 -0400 |
---|---|---|
committer | Paul Gilbert | 2017-06-21 21:50:27 -0400 |
commit | 0f084fb70346af8b00120b35d873dc68b665e4a3 (patch) | |
tree | 096257bec875b0d486e33eda3313795a9e83eb70 /engines | |
parent | 69c74685c3fedc24e0e4428b40782a0629fc2d5a (diff) | |
download | scummvm-rg350-0f084fb70346af8b00120b35d873dc68b665e4a3.tar.gz scummvm-rg350-0f084fb70346af8b00120b35d873dc68b665e4a3.tar.bz2 scummvm-rg350-0f084fb70346af8b00120b35d873dc68b665e4a3.zip |
TITANIC: Fix getting Titania's eye from light fixture
Diffstat (limited to 'engines')
-rw-r--r-- | engines/titanic/game/belbot_get_light.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/game/belbot_get_light.cpp b/engines/titanic/game/belbot_get_light.cpp index 2cc4c3ae19..dcef6426f9 100644 --- a/engines/titanic/game/belbot_get_light.cpp +++ b/engines/titanic/game/belbot_get_light.cpp @@ -61,7 +61,7 @@ bool CBelbotGetLight::MovieEndMsg(CMovieEndMsg *msg) { } bool CBelbotGetLight::MovieFrameMsg(CMovieFrameMsg *msg) { - if (getMovieFrame() == 37) { + if (msg->_frameNumber == 37) { CActMsg actMsg("BellbotGetLight"); actMsg.execute("Eye1"); } |