From f2159ce4ab6dd8f5c4864a880c1de6c446a3a98c Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 13 Nov 2016 23:32:42 -0500 Subject: TITANIC: Fix closing bed footer --- engines/titanic/game/sgt/bedfoot.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/titanic') diff --git a/engines/titanic/game/sgt/bedfoot.cpp b/engines/titanic/game/sgt/bedfoot.cpp index 391c88c8c8..d84a73f0a5 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") { -- cgit v1.2.3