Skip to content

Commit

Permalink
TITANIC: Fix closing bed footer
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Nov 14, 2016
1 parent 093e385 commit f2159ce
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions engines/titanic/game/sgt/bedfoot.cpp
Expand Up @@ -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";
Expand All @@ -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") {
Expand Down

0 comments on commit f2159ce

Please sign in to comment.