aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStrangerke2012-03-20 07:50:23 +0100
committerStrangerke2012-04-06 08:23:34 +0200
commit471b085febc04c4afae1a2667def82ce588fafc0 (patch)
tree38a4389513931a82d01c2877fb56a09a35474417
parent2df7ebf1609d033628423870fba2217c855e75f3 (diff)
downloadscummvm-rg350-471b085febc04c4afae1a2667def82ce588fafc0.tar.gz
scummvm-rg350-471b085febc04c4afae1a2667def82ce588fafc0.tar.bz2
scummvm-rg350-471b085febc04c4afae1a2667def82ce588fafc0.zip
MORTEVIELLE: Fix regression
-rw-r--r--engines/mortevielle/actions.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/engines/mortevielle/actions.cpp b/engines/mortevielle/actions.cpp
index 7949d93b38..86c03b41d1 100644
--- a/engines/mortevielle/actions.cpp
+++ b/engines/mortevielle/actions.cpp
@@ -70,9 +70,12 @@ void MortevielleEngine::fctMove() {
} else if (g_num == 7) {
g_s._currPlace = ATTIC;
_menu.setDestinationMenuText(ATTIC);
- } else if (g_num != 6)
+ }
+
+ if (g_num != 6)
g_s._currPlace = ROOM26;
- else if ((g_num > 1) && (g_num < 6))
+
+ if ((g_num > 1) && (g_num < 6))
g_ment = g_num - 1;
else if (g_num > 7)
g_ment = g_num - 3;