diff options
author | Martin Kiewitz | 2010-07-28 05:03:23 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-07-28 05:03:23 +0000 |
commit | ea2256c05b500fb036101f0d99aed7a6ebe8b96e (patch) | |
tree | aa3c9bed501ebebd70f4725c428207bba8ddc155 | |
parent | 50e493f3ef368847b95d443bee13f6918bbab34e (diff) | |
download | scummvm-rg350-ea2256c05b500fb036101f0d99aed7a6ebe8b96e.tar.gz scummvm-rg350-ea2256c05b500fb036101f0d99aed7a6ebe8b96e.tar.bz2 scummvm-rg350-ea2256c05b500fb036101f0d99aed7a6ebe8b96e.zip |
SCI: changing workarounds of r51401 to stillcall
svn-id: r51402
-rw-r--r-- | engines/sci/engine/workarounds.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp index 244066a6e6..0adfd9be95 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -124,13 +124,13 @@ const SciWorkaroundEntry kAbs_workarounds[] = { // gameID, room,script,lvl, object-name, method-name, call,index, workaround const SciWorkaroundEntry kCelHigh_workarounds[] = { - { GID_SQ1, 1, 255, 0, "DIcon", "setSize", -1, 0, { WORKAROUND_FAKE, 66 } }, // DEMO: Called with 2nd/3rd parameters as objects when clicking on the menu + { GID_SQ1, 1, 255, 0, "DIcon", "setSize", -1, 0, { WORKAROUND_STILLCALL, 0 } }, // DEMO: Called with 2nd/3rd parameters as objects when clicking on the menu SCI_WORKAROUNDENTRY_TERMINATOR }; // gameID, room,script,lvl, object-name, method-name, call,index, workaround const SciWorkaroundEntry kCelWide_workarounds[] = { - { GID_SQ1, 1, 255, 0, "DIcon", "setSize", -1, 0, { WORKAROUND_FAKE, 78 } }, // DEMO: Called with 2nd/3rd parameters as objects when clicking on the menu + { GID_SQ1, 1, 255, 0, "DIcon", "setSize", -1, 0, { WORKAROUND_STILLCALL, 0 } }, // DEMO: Called with 2nd/3rd parameters as objects when clicking on the menu SCI_WORKAROUNDENTRY_TERMINATOR }; |