diff options
author | Paul Gilbert | 2016-08-28 09:14:30 -0400 |
---|---|---|
committer | Paul Gilbert | 2016-08-28 09:14:30 -0400 |
commit | 1dcfe25808164c5f2540662028862ac8a0e56831 (patch) | |
tree | 4fb480db39f98010c91ad1283fa66eb77abfb810 /engines/titanic/moves | |
parent | 9e5ddfee1d3741af0a5e8ad4c39aeb9c86aea22a (diff) | |
download | scummvm-rg350-1dcfe25808164c5f2540662028862ac8a0e56831.tar.gz scummvm-rg350-1dcfe25808164c5f2540662028862ac8a0e56831.tar.bz2 scummvm-rg350-1dcfe25808164c5f2540662028862ac8a0e56831.zip |
TITANIC: Implemented SGT game classes
Diffstat (limited to 'engines/titanic/moves')
-rw-r--r-- | engines/titanic/moves/enter_exit_mini_lift.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/titanic/moves/enter_exit_mini_lift.cpp b/engines/titanic/moves/enter_exit_mini_lift.cpp index e626d70a9e..3caa674ab8 100644 --- a/engines/titanic/moves/enter_exit_mini_lift.cpp +++ b/engines/titanic/moves/enter_exit_mini_lift.cpp @@ -56,7 +56,7 @@ bool CEnterExitMiniLift::MouseButtonDownMsg(CMouseButtonDownMsg *msg) { if (pet) pet->setRoomsRoomNum(_destRoomNum); } else if (compareRoomNameTo("SGTLittleLift")) { - if (_statics->_changeViewFlag) { + if (_statics->_changeViewNum) { changeView(_statics->_destView); } } @@ -65,7 +65,7 @@ bool CEnterExitMiniLift::MouseButtonDownMsg(CMouseButtonDownMsg *msg) { } bool CEnterExitMiniLift::EnterViewMsg(CEnterViewMsg *msg) { - _cursorId = _statics->_changeViewFlag ? CURSOR_MOVE_FORWARD : CURSOR_INVALID; + _cursorId = _statics->_changeViewNum ? CURSOR_MOVE_FORWARD : CURSOR_INVALID; return true; } |