diff options
author | Paul Gilbert | 2016-11-13 23:32:42 -0500 |
---|---|---|
committer | Paul Gilbert | 2016-11-13 23:32:42 -0500 |
commit | f2159ce4ab6dd8f5c4864a880c1de6c446a3a98c (patch) | |
tree | 69dbedd0de907f8433c92505e688a4baa08f5f9f /engines/titanic | |
parent | 093e385c0d1750a868694ae1bd017e2dc4ec0a1d (diff) | |
download | scummvm-rg350-f2159ce4ab6dd8f5c4864a880c1de6c446a3a98c.tar.gz scummvm-rg350-f2159ce4ab6dd8f5c4864a880c1de6c446a3a98c.tar.bz2 scummvm-rg350-f2159ce4ab6dd8f5c4864a880c1de6c446a3a98c.zip |
TITANIC: Fix closing bed footer
Diffstat (limited to 'engines/titanic')
-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") { |