diff options
author | Paul Gilbert | 2016-11-12 21:17:14 -0500 |
---|---|---|
committer | Paul Gilbert | 2016-11-12 21:17:14 -0500 |
commit | 3f108f15755e7d5512f26de27bb299cbe26a542c (patch) | |
tree | 75fc1f3467746ddcacb74ce985f290906f3e48a0 /engines | |
parent | f8d935d7db8a50133ccc255aa7ceaf7b7d286ccc (diff) | |
download | scummvm-rg350-3f108f15755e7d5512f26de27bb299cbe26a542c.tar.gz scummvm-rg350-3f108f15755e7d5512f26de27bb299cbe26a542c.tar.bz2 scummvm-rg350-3f108f15755e7d5512f26de27bb299cbe26a542c.zip |
TITANIC: Fix look text for SGT stateroom
Diffstat (limited to 'engines')
-rw-r--r-- | engines/titanic/game/sgt/sgt_nav.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/titanic/game/sgt/sgt_nav.cpp b/engines/titanic/game/sgt/sgt_nav.cpp index 6e3c88e509..0b93e5fbe5 100644 --- a/engines/titanic/game/sgt/sgt_nav.cpp +++ b/engines/titanic/game/sgt/sgt_nav.cpp @@ -58,7 +58,7 @@ bool SGTNav::MouseButtonDownMsg(CMouseButtonDownMsg *msg) { offMsg.execute("Toilet"); changeView("SGTState.Node 2.E"); - } else if (_statics->_v1 == "Open") { + } else if (_statics->_v1 != "Open") { petDisplayMessage(1, YOUR_STATEROOM); } else if (_statics->_v6 == "Closed") { petDisplayMessage(1, BED_NOT_SUPPORT_YOUR_WEIGHT); |