diff options
author | sluicebox | 2020-01-02 15:29:15 -0800 |
---|---|---|
committer | sluicebox | 2020-01-02 15:29:15 -0800 |
commit | c3c23c28a194ac5e3a2b74d42530d8b05824b091 (patch) | |
tree | ba34b985d83d1ed937dd0810f9e35b4b7e995298 /engines/sci | |
parent | 03392537a0b0c79323816f8d5644173f80f782a7 (diff) | |
download | scummvm-rg350-c3c23c28a194ac5e3a2b74d42530d8b05824b091.tar.gz scummvm-rg350-c3c23c28a194ac5e3a2b74d42530d8b05824b091.tar.bz2 scummvm-rg350-c3c23c28a194ac5e3a2b74d42530d8b05824b091.zip |
SCI32: Add GK2 workaround for flag debug dialog
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 0725695b66..ba11883cbc 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -370,6 +370,7 @@ const SciWorkaroundEntry uninitializedReadWorkarounds[] = { { GID_GK1, -1, 64950, -1, "Feature", "handleEvent", NULL, 0, 0, { WORKAROUND_FAKE, 0 } }, // sometimes when walk-clicking { GID_GK1, -1, 64937, -1, "GKControls", "dispatchEvent", NULL, 6, 6, { WORKAROUND_FAKE, 0 } }, // when using keyboard navigation (tab) in the game settings and hitting 'enter' when over a slider { GID_GK2, -1, 11, 0, "", "export 10", NULL, -1, -1, { WORKAROUND_FAKE, 0 } }, // When game starts and throughout game. temp1 in Italian version, temp3 in others + { GID_GK2, -1, 64921, -1, "Print", "addEdit", NULL, 1, 1, { WORKAROUND_FAKE, 0 } }, // When trying to use the game debugger's flag setting command { GID_HOYLE1, 4, 104, 0, "GinRummyCardList", "calcRuns", NULL, 4, 4, { WORKAROUND_FAKE, 0 } }, // Gin Rummy / right when the game starts { GID_HOYLE1, 5, 204, 0, "tableau", "checkRuns", NULL, 2, 2, { WORKAROUND_FAKE, 0 } }, // Cribbage / during the game { GID_HOYLE1, 3, 16, 0, "", "export 0", sig_uninitread_hoyle1_1, 3, 3, { WORKAROUND_FAKE, 0 } }, // Hearts / during the game - bug #5299 |