From 925c5f2d33d57be79bda8270bbd2f69fa46ffd4d Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Thu, 22 Jun 2017 21:41:14 -0400 Subject: TITANIC: Fixes to destinations when exiting the lifts --- engines/titanic/moves/exit_lift.cpp | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) (limited to 'engines') 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: -- cgit v1.2.3