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

dreammaster dreammaster at scummvm.org
Mon Nov 14 05:32:49 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:
f2159ce4ab TITANIC: Fix closing bed footer


Commit: f2159ce4ab6dd8f5c4864a880c1de6c446a3a98c
    https://github.com/scummvm/scummvm/commit/f2159ce4ab6dd8f5c4864a880c1de6c446a3a98c
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2016-11-13T23:32:42-05:00

Commit Message:
TITANIC: Fix closing bed footer

Changed paths:
    engines/titanic/game/sgt/bedfoot.cpp



diff --git a/engines/titanic/game/sgt/bedfoot.cpp b/engines/titanic/game/sgt/bedfoot.cpp
index 391c88c..d84a73f 100644
--- a/engines/titanic/game/sgt/bedfoot.cpp
+++ b/engines/titanic/game/sgt/bedfoot.cpp
@@ -84,7 +84,7 @@ bool CBedfoot::TurnOff(CTurnOff *msg) {
 	}
 
 	if (_statics->_bedfoot == "Open" && _statics->_bedhead == "Closed") {
-		_isClosed = false;
+		_isClosed = true;
 		_startFrame = 20;
 		if (_statics->_tv == "Closed") {
 			_statics->_bedfoot = "Closed";
@@ -98,7 +98,7 @@ bool CBedfoot::TurnOff(CTurnOff *msg) {
 		playSound("b#7.wav");
 
 	} else if (_statics->_bedfoot == "NotOnWashstand" && _statics->_bedhead == "ClosedWrong") {
-		_isClosed = false;
+		_isClosed = true;
 		_startFrame = 17;
 
 		if (_statics->_tv == "Closed") {





More information about the Scummvm-git-logs mailing list