diff options
author | Matthew Hoops | 2010-07-27 01:52:52 +0000 |
---|---|---|
committer | Matthew Hoops | 2010-07-27 01:52:52 +0000 |
commit | 280204bd12852109ac3202659c2c1b71a922a6c8 (patch) | |
tree | 41f228cb2af8d75b18108ec2f920fe09d0832cd2 /engines/sci | |
parent | 89c9425eef092a7d9482d7512841151932a6a2e3 (diff) | |
download | scummvm-rg350-280204bd12852109ac3202659c2c1b71a922a6c8.tar.gz scummvm-rg350-280204bd12852109ac3202659c2c1b71a922a6c8.tar.bz2 scummvm-rg350-280204bd12852109ac3202659c2c1b71a922a6c8.zip |
SCI: Add workarounds for the camelot demo
svn-id: r51342
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/engine/workarounds.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp index 32e17540ec..290f980f58 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -222,6 +222,8 @@ const SciWorkaroundEntry kUnLoad_workarounds[] = { { GID_LAURABOW2, 4, 4, 0, "sCartoon", "changeState", -1, 0, { WORKAROUND_IGNORE, 0 } }, // DEMO: inside the museum, a 3rd parameter is passed by accident { GID_LAURABOW2, 6, 6, 0, "sCartoon", "changeState", -1, 0, { WORKAROUND_IGNORE, 0 } }, // DEMO: after the murder, a 3rd parameter is passed by accident { GID_LAURABOW2, 7, 7, 0, "sCartoon", "changeState", -1, 0, { WORKAROUND_IGNORE, 0 } }, // DEMO: after the logo is shown, a 3rd parameter is passed by accident + { GID_CAMELOT, 921, 921, 1, "Script", "changeState", 0x36, 0, { WORKAROUND_IGNORE, 0 } }, // DEMO: While showing Camelot (and other places), the reference is invalid + { GID_CAMELOT, 921, 921, 1, "Script", "init", 0x36, 0, { WORKAROUND_IGNORE, 0 } }, // DEMO: When being attacked by the boar (and other places), the reference is invalid SCI_WORKAROUNDENTRY_TERMINATOR }; |