aboutsummaryrefslogtreecommitdiff
path: root/engines/lastexpress/fight
diff options
context:
space:
mode:
authorLittleboy2013-11-28 01:15:16 -0500
committerLittleboy2013-12-10 01:54:59 -0500
commitddcef239432c42b99badab232878e404fa892e01 (patch)
tree79ccc3012fcb477191475bbad771e7a6b4706989 /engines/lastexpress/fight
parente36786eb1bacc55f0b5ba29ac3278cd3b27a0e59 (diff)
downloadscummvm-rg350-ddcef239432c42b99badab232878e404fa892e01.tar.gz
scummvm-rg350-ddcef239432c42b99badab232878e404fa892e01.tar.bz2
scummvm-rg350-ddcef239432c42b99badab232878e404fa892e01.zip
LASTEXPRESS: Fix enum comparison
Diffstat (limited to 'engines/lastexpress/fight')
-rw-r--r--engines/lastexpress/fight/fight.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/lastexpress/fight/fight.cpp b/engines/lastexpress/fight/fight.cpp
index a717299a74..944b1cb4ac 100644
--- a/engines/lastexpress/fight/fight.cpp
+++ b/engines/lastexpress/fight/fight.cpp
@@ -222,7 +222,7 @@ Fight::FightEndType Fight::setup(FightType type) {
break;
case kFightMilos:
- sceneIndex = (getObjects()->get(kObjectCompartment1).model < kObjectLocation3) ? kSceneFightMilos : kSceneFightMilosBedOpened;
+ sceneIndex = (getObjects()->get(kObjectCompartment1).model < kObjectModel3) ? kSceneFightMilos : kSceneFightMilosBedOpened;
break;
case kFightAnna: