diff options
author | Strangerke | 2012-03-29 17:55:18 +0200 |
---|---|---|
committer | Strangerke | 2012-04-06 08:24:08 +0200 |
commit | c7eba15ee74cc2b44b3a222b25eb149cc90b8009 (patch) | |
tree | b1c1d6e3e554eb658f4ca0175d0998e77c7f612b | |
parent | b27b77b3547dd0d3045da48ee7944bc65d19cd17 (diff) | |
download | scummvm-rg350-c7eba15ee74cc2b44b3a222b25eb149cc90b8009.tar.gz scummvm-rg350-c7eba15ee74cc2b44b3a222b25eb149cc90b8009.tar.bz2 scummvm-rg350-c7eba15ee74cc2b44b3a222b25eb149cc90b8009.zip |
MORTEVIELLE: Fix regression in 4edc3bff94b4cb27b32f46a4934bf486ab834e1c
-rw-r--r-- | engines/mortevielle/actions.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/engines/mortevielle/actions.cpp b/engines/mortevielle/actions.cpp index 4e6dfb0cf0..cf68d7d496 100644 --- a/engines/mortevielle/actions.cpp +++ b/engines/mortevielle/actions.cpp @@ -68,9 +68,7 @@ void MortevielleEngine::fctMove() { } else if (_num == 7) { _coreVar._currPlace = ATTIC; _menu.setDestinationText(ATTIC); - } - - if (_num != 6) + } else if (_num != 6) _coreVar._currPlace = ROOM26; if ((_num > 1) && (_num < 6)) |