aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2017-06-21 21:50:27 -0400
committerPaul Gilbert2017-06-21 21:50:27 -0400
commit0f084fb70346af8b00120b35d873dc68b665e4a3 (patch)
tree096257bec875b0d486e33eda3313795a9e83eb70
parent69c74685c3fedc24e0e4428b40782a0629fc2d5a (diff)
downloadscummvm-rg350-0f084fb70346af8b00120b35d873dc68b665e4a3.tar.gz
scummvm-rg350-0f084fb70346af8b00120b35d873dc68b665e4a3.tar.bz2
scummvm-rg350-0f084fb70346af8b00120b35d873dc68b665e4a3.zip
TITANIC: Fix getting Titania's eye from light fixture
-rw-r--r--engines/titanic/game/belbot_get_light.cpp2
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");
}