[Scummvm-git-logs] scummvm master -> fc65fd8474b63c50c3780416f3544e0dd570ac57

dreammaster dreammaster at scummvm.org
Sat Dec 17 21:24:26 CET 2016


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
fc65fd8474 TITANIC: Fix hood animation in the elevators


Commit: fc65fd8474b63c50c3780416f3544e0dd570ac57
    https://github.com/scummvm/scummvm/commit/fc65fd8474b63c50c3780416f3544e0dd570ac57
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2016-12-17T15:24:23-05:00

Commit Message:
TITANIC: Fix hood animation in the elevators

Changed paths:
    engines/titanic/core/turn_on_turn_off.cpp


diff --git a/engines/titanic/core/turn_on_turn_off.cpp b/engines/titanic/core/turn_on_turn_off.cpp
index 191f705..a6051c7 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





More information about the Scummvm-git-logs mailing list