diff options
author | Filippos Karapetis | 2010-08-24 17:28:52 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-08-24 17:28:52 +0000 |
commit | 27fbfcc34eb3daf557092c5d926567071a3917a6 (patch) | |
tree | ffc384475be9e7de9f25cd4a74f38e43d526114f /engines | |
parent | 3e6fb233ac33d74e7045fc8e172e4ac86f5f682c (diff) | |
download | scummvm-rg350-27fbfcc34eb3daf557092c5d926567071a3917a6.tar.gz scummvm-rg350-27fbfcc34eb3daf557092c5d926567071a3917a6.tar.bz2 scummvm-rg350-27fbfcc34eb3daf557092c5d926567071a3917a6.zip |
SCI: Fixed bug #3052359 - "Hoyle1: Hearts Crash"
svn-id: r52352
Diffstat (limited to 'engines')
-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 2bd73141d1..8255116c13 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -114,6 +114,7 @@ const SciWorkaroundEntry uninitializedReadWorkarounds[] = { { GID_GK2, -1, 11, 0, "", "export 10", -1, 4, { WORKAROUND_FAKE, 0 } }, // called during the game { GID_HOYLE1, 4, 104, 0, "GinRummyCardList", "calcRuns", -1, 4, { WORKAROUND_FAKE, 0 } }, // Gin Rummy / right when the game starts { GID_HOYLE1, 5, 204, 0, "tableau", "checkRuns", -1, 2, { WORKAROUND_FAKE, 0 } }, // Cribbage / during the game + { GID_HOYLE1, 3, 16, 0, "", "export 0", 0x37c, 3, { WORKAROUND_FAKE, 0 } }, // Hearts / during the game - bug #3052359 { GID_HOYLE3, -1, 0, 1, "Character", "say", -1, -1, { WORKAROUND_FAKE, 0 } }, // when starting checkers or dominoes, first time a character says something - temps 504 and 505 { GID_HOYLE3, -1, 700, 0, "gcWindow", "open", -1, -1, { WORKAROUND_FAKE, 0 } }, // when entering control menu { GID_HOYLE3, 100, 100, 0, "dominoHand2", "cue", -1, 1, { WORKAROUND_FAKE, 0 } }, // while playing domino - bug #3036918 |