aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/moves
diff options
context:
space:
mode:
authorPaul Gilbert2016-08-28 09:14:30 -0400
committerPaul Gilbert2016-08-28 09:14:30 -0400
commit1dcfe25808164c5f2540662028862ac8a0e56831 (patch)
tree4fb480db39f98010c91ad1283fa66eb77abfb810 /engines/titanic/moves
parent9e5ddfee1d3741af0a5e8ad4c39aeb9c86aea22a (diff)
downloadscummvm-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.cpp4
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;
}