diff options
-rw-r--r-- | engines/titanic/game/sgt/bedfoot.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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") { |