diff options
author | Filippos Karapetis | 2010-08-02 12:18:22 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-08-02 12:18:22 +0000 |
commit | 81aeb6a125947dc8ae7456c7f5898d41d6d1a86c (patch) | |
tree | 7d263a9a90ef1a695dccc143806c25b56311c06a /engines | |
parent | 065d32ec0025a12276957277798464a62bd88094 (diff) | |
download | scummvm-rg350-81aeb6a125947dc8ae7456c7f5898d41d6d1a86c.tar.gz scummvm-rg350-81aeb6a125947dc8ae7456c7f5898d41d6d1a86c.tar.bz2 scummvm-rg350-81aeb6a125947dc8ae7456c7f5898d41d6d1a86c.zip |
SCI: Actually fake a return value for rev #51611, instead of ignoring the call completely
svn-id: r51612
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sci/engine/workarounds.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp index 8c122b7278..33e5764fed 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -295,7 +295,7 @@ const SciWorkaroundEntry kSetPort_workarounds[] = { // gameID, room,script,lvl, object-name, method-name, call,index, workaround const SciWorkaroundEntry kStrAt_workarounds[] = { - { GID_ISLANDBRAIN, 300, 310, 0, "childBreed", "changeState",0x1c7c, 0, { WORKAROUND_IGNORE, 0 } }, // when clicking Breed to get the second-generation cyborg hybrid (Standard difficulty), the two parameters are swapped - bug #3037835 + { GID_ISLANDBRAIN, 300, 310, 0, "childBreed", "changeState",0x1c7c, 0, { WORKAROUND_FAKE, 0 } }, // when clicking Breed to get the second-generation cyborg hybrid (Standard difficulty), the two parameters are swapped - bug #3037835 SCI_WORKAROUNDENTRY_TERMINATOR }; |