aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorFilippos Karapetis2010-08-19 16:21:31 +0000
committerFilippos Karapetis2010-08-19 16:21:31 +0000
commit6dcdc72fdafe1a6ac0cd63adb1570f0dca48f469 (patch)
treee2e2c3f9e12ae096d9a29b0355e6e36cec381251 /engines
parent780dacf48d7c0a4912036762bfa5ffc93bbe2429 (diff)
downloadscummvm-rg350-6dcdc72fdafe1a6ac0cd63adb1570f0dca48f469.tar.gz
scummvm-rg350-6dcdc72fdafe1a6ac0cd63adb1570f0dca48f469.tar.bz2
scummvm-rg350-6dcdc72fdafe1a6ac0cd63adb1570f0dca48f469.zip
SCI: Fixed bug #3038228 - "MOTHERGOOSE: Crash at the castle"
svn-id: r52214
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/engine/workarounds.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp
index 9bc2235e33..6062c6abb4 100644
--- a/engines/sci/engine/workarounds.cpp
+++ b/engines/sci/engine/workarounds.cpp
@@ -92,7 +92,8 @@ const SciWorkaroundEntry opcodeAndWorkarounds[] = {
// gameID, room,script,lvl, object-name, method-name, call,index, workaround
const SciWorkaroundEntry opcodeOrWorkarounds[] = {
- { GID_ECOQUEST2, 100, 0, 0, "Rain", "points", 0xcc6, 0, { WORKAROUND_FAKE, 0 } }, // when giving the papers to the customs officer, gets called against a pointer instead of a number - bug #3034464
+ { GID_ECOQUEST2, 100, 0, 0, "Rain", "points", 0xcc6, 0, { WORKAROUND_FAKE, 0 } }, // when giving the papers to the customs officer, gets called against a pointer instead of a number - bug #3034464
+ { GID_MOTHERGOOSE, -1, 4, 0, "rm004", "doit", -1, 0, { WORKAROUND_FAKE, 0 } }, // when going north and reaching the castle (rooms 4 and 37) - bug #3038228
SCI_WORKAROUNDENTRY_TERMINATOR
};