diff options
author | Littleboy | 2013-11-28 01:15:16 -0500 |
---|---|---|
committer | Littleboy | 2013-12-10 01:54:59 -0500 |
commit | ddcef239432c42b99badab232878e404fa892e01 (patch) | |
tree | 79ccc3012fcb477191475bbad771e7a6b4706989 /engines/lastexpress/fight | |
parent | e36786eb1bacc55f0b5ba29ac3278cd3b27a0e59 (diff) | |
download | scummvm-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.cpp | 2 |
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: |