diff options
author | athrxx | 2013-04-22 21:22:28 +0200 |
---|---|---|
committer | athrxx | 2013-04-22 21:23:27 +0200 |
commit | 581031a55d35f50f11819e9738f886945f026293 (patch) | |
tree | b5cbf2a35187bade6ad08d29d0684ec7f050376f | |
parent | 3e1ccff79d0e3615f662a8d9fa1e9343d748ee89 (diff) | |
download | scummvm-rg350-581031a55d35f50f11819e9738f886945f026293.tar.gz scummvm-rg350-581031a55d35f50f11819e9738f886945f026293.tar.bz2 scummvm-rg350-581031a55d35f50f11819e9738f886945f026293.zip |
KYRA: (EOB) - fix bug #3596547
(EOB1: Door Buttons Don't Work)
-rw-r--r-- | engines/kyra/scene_eob.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/kyra/scene_eob.cpp b/engines/kyra/scene_eob.cpp index 45de232cb6..cfac5db8b3 100644 --- a/engines/kyra/scene_eob.cpp +++ b/engines/kyra/scene_eob.cpp @@ -86,6 +86,10 @@ void EoBCoreEngine::loadLevel(int level, int sub) { pos += 2; } + // WORKAROUND for bug #3596547 (EOB1: Door Buttons Don't Work) + if (_flags.gameID == GI_EOB1 && level == 7 && _levelBlockProperties[0x035C].assignedObjects == 0x0E89) + _levelBlockProperties[0x035C].assignedObjects = 0x0E8D; + loadVcnData(gfxFile.c_str(), (_flags.gameID == GI_EOB1) ? _cgaMappingLevel[_cgaLevelMappingIndex[level - 1]] : 0); _screen->loadEoBBitmap("INVENT", _cgaMappingInv, 5, 3, 2); delayUntil(end); |