diff options
author | Colin Snover | 2017-06-19 19:31:29 -0500 |
---|---|---|
committer | Colin Snover | 2017-06-19 19:56:48 -0500 |
commit | 71e2f9d6fb03ed599153e279bdfb5493957f28e3 (patch) | |
tree | 92f9df2cbfee1a5d1ba3182ece8bdaee3b7d9636 | |
parent | 5d046791248ff643c834eb403837a31fc2a40143 (diff) | |
download | scummvm-rg350-71e2f9d6fb03ed599153e279bdfb5493957f28e3.tar.gz scummvm-rg350-71e2f9d6fb03ed599153e279bdfb5493957f28e3.tar.bz2 scummvm-rg350-71e2f9d6fb03ed599153e279bdfb5493957f28e3.zip |
SCI32: Add workaround for uninitialised read in PQ4
Fixes Trac#9847.
-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 a3c0005ccb..b41dbe1092 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -360,6 +360,7 @@ const SciWorkaroundEntry uninitializedReadWorkarounds[] = { { GID_PEPPER, -1, 894, 0, "Package", "doVerb", NULL, 3, { WORKAROUND_FAKE, 0 } }, // using the hand on the book in the inventory - bug #5154 { GID_PEPPER, 150, 928, 0, "Narrator", "startText", NULL, 0, { WORKAROUND_FAKE, 0 } }, // happens during the non-interactive demo of Pepper { GID_PQ4, -1, 25, 0, "iconToggle", "select", NULL, 1, { WORKAROUND_FAKE, 0 } }, // when toggling the icon bar to auto-hide or not + { GID_PQ4, 170, 170, -1, "hideAndSeek", "handleEvent", NULL, 1, { WORKAROUND_FAKE, 0 } }, // when clicking to move right while still moving left during the Emo shootout - bug #9847 { GID_PQ4, 275, 64964, -1, "DPath", "init", NULL, 1, { WORKAROUND_FAKE, 0 } }, // when Sherry walks out of the morgue on day 3 { GID_PQ4, 240, 64964, -1, "DPath", "init", NULL, 1, { WORKAROUND_FAKE, 0 } }, // when encountering Sherry and the reporter outside the morgue at the end of day 3 { GID_PQSWAT, -1, 64950, 0, NULL, "handleEvent", NULL, 0, { WORKAROUND_FAKE, 0 } }, // Using any menus in-game |