diff options
author | Filippos Karapetis | 2010-08-29 02:31:18 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-08-29 02:31:18 +0000 |
commit | a32926147c9a29dd9ee5b27fdf21c9ea26d38bae (patch) | |
tree | 448b500f9231ed9067520e8929ef2725934bf310 /engines/sci | |
parent | b0b4ddcc5232485100fd42dcd14d164a8d2eaeac (diff) | |
download | scummvm-rg350-a32926147c9a29dd9ee5b27fdf21c9ea26d38bae.tar.gz scummvm-rg350-a32926147c9a29dd9ee5b27fdf21c9ea26d38bae.tar.bz2 scummvm-rg350-a32926147c9a29dd9ee5b27fdf21c9ea26d38bae.zip |
SCI: Fixed bug #3051475 - "MOTHERGOOSE CD: Crash after giving the pipe to the king"
svn-id: r52433
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/engine/workarounds.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp index 8b02efb127..66a6a48c3b 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -49,6 +49,7 @@ const SciWorkaroundEntry opcodeDptoaWorkarounds[] = { // gameID, room,script,lvl, object-name, method-name, call,index, workaround const SciWorkaroundEntry opcodeGeWorkarounds[] = { { GID_HOYLE1, 5, 213, 0, "", "export 0", -1, 0, { WORKAROUND_FAKE, 1 } }, // happens sometimes during cribbage - bug #3038433 + { GID_MOTHERGOOSE256, 4, 998, 0, "door", "setCel", -1, 0, { WORKAROUND_FAKE, 1 } }, // after giving the king his pipe back, listening to his song and leaving the castle - bug #3051475 { GID_PQ3, 31, 31, 0, "rm031", "init", -1, 0, { WORKAROUND_FAKE, 1 } }, // pq3 english: when exiting the car, while morales is making phonecalls - bug #3037565 SCI_WORKAROUNDENTRY_TERMINATOR }; |