diff options
author | Paul Gilbert | 2017-06-22 21:41:14 -0400 |
---|---|---|
committer | Paul Gilbert | 2017-06-22 21:41:14 -0400 |
commit | 925c5f2d33d57be79bda8270bbd2f69fa46ffd4d (patch) | |
tree | 07e267beb9554d6658361f6fbef73703c01fdfe3 | |
parent | 8792bd17bbe1674e8353736847e158d902fc9228 (diff) | |
download | scummvm-rg350-925c5f2d33d57be79bda8270bbd2f69fa46ffd4d.tar.gz scummvm-rg350-925c5f2d33d57be79bda8270bbd2f69fa46ffd4d.tar.bz2 scummvm-rg350-925c5f2d33d57be79bda8270bbd2f69fa46ffd4d.zip |
TITANIC: Fixes to destinations when exiting the lifts
-rw-r--r-- | engines/titanic/moves/exit_lift.cpp | 24 |
1 files changed, 12 insertions, 12 deletions
diff --git a/engines/titanic/moves/exit_lift.cpp b/engines/titanic/moves/exit_lift.cpp index 3eb990ac98..f341f3b6bb 100644 --- a/engines/titanic/moves/exit_lift.cpp +++ b/engines/titanic/moves/exit_lift.cpp @@ -71,12 +71,12 @@ bool CExitLift::MouseButtonDownMsg(CMouseButtonDownMsg *msg) { } } else if (floorNum > 19) { switch (elevNum) { - case 0: - case 2: - _viewName = "2ndClassLobby.Node 8.N"; - break; case 1: case 3: + _viewName = "2ndClassLobby.Node 8.N"; + break; + case 2: + case 4: _viewName = "2ndClassLobby.Node 1.N"; break; default: @@ -84,12 +84,12 @@ bool CExitLift::MouseButtonDownMsg(CMouseButtonDownMsg *msg) { } } else if (floorNum > 1) { switch (elevNum) { - case 0: - case 2: - _viewName = "1stClassLobby.Node 1.W"; - break; case 1: case 3: + _viewName = "1stClassLobby.Node 1.W"; + break; + case 2: + case 4: _viewName = "1stClassLobby.Node 1.E"; break; default: @@ -97,16 +97,16 @@ bool CExitLift::MouseButtonDownMsg(CMouseButtonDownMsg *msg) { } } else { switch (elevNum) { - case 0: + case 1: _viewName = "TopOfWell.Node 6.E"; break; - case 1: + case 2: _viewName = "TopOfWell.Node 6.W"; break; - case 2: + case 3: _viewName = "TopOfWell.Node 10.W"; break; - case 3: + case 4: _viewName = "TopOfWell.Node 10.E"; break; default: |