aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorPaul Gilbert2016-12-17 15:24:23 -0500
committerPaul Gilbert2016-12-17 15:24:23 -0500
commitfc65fd8474b63c50c3780416f3544e0dd570ac57 (patch)
tree41c49b9066cf7ad72bdf2b1a887bf95b0f92b891 /engines
parentbbef10c0687fd0063dd8a884a62823dce71b4c3c (diff)
downloadscummvm-rg350-fc65fd8474b63c50c3780416f3544e0dd570ac57.tar.gz
scummvm-rg350-fc65fd8474b63c50c3780416f3544e0dd570ac57.tar.bz2
scummvm-rg350-fc65fd8474b63c50c3780416f3544e0dd570ac57.zip
TITANIC: Fix hood animation in the elevators
Diffstat (limited to 'engines')
-rw-r--r--engines/titanic/core/turn_on_turn_off.cpp2
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