diff options
author | Paul Gilbert | 2016-12-17 15:24:23 -0500 |
---|---|---|
committer | Paul Gilbert | 2016-12-17 15:24:23 -0500 |
commit | fc65fd8474b63c50c3780416f3544e0dd570ac57 (patch) | |
tree | 41c49b9066cf7ad72bdf2b1a887bf95b0f92b891 | |
parent | bbef10c0687fd0063dd8a884a62823dce71b4c3c (diff) | |
download | scummvm-rg350-fc65fd8474b63c50c3780416f3544e0dd570ac57.tar.gz scummvm-rg350-fc65fd8474b63c50c3780416f3544e0dd570ac57.tar.bz2 scummvm-rg350-fc65fd8474b63c50c3780416f3544e0dd570ac57.zip |
TITANIC: Fix hood animation in the elevators
-rw-r--r-- | engines/titanic/core/turn_on_turn_off.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/core/turn_on_turn_off.cpp b/engines/titanic/core/turn_on_turn_off.cpp index 191f7050c9..a6051c7c6f 100644 --- a/engines/titanic/core/turn_on_turn_off.cpp +++ b/engines/titanic/core/turn_on_turn_off.cpp @@ -68,7 +68,7 @@ bool CTurnOnTurnOff::TurnOn(CTurnOn *msg) { } bool CTurnOnTurnOff::TurnOff(CTurnOff *msg) { - if (!_isOn) { + if (_isOn) { if (_isBlocking) playMovie(_startFrameOff, _endFrameOff, MOVIE_GAMESTATE); else |