diff options
| author | Colin Snover | 2017-07-27 10:46:49 -0500 | 
|---|---|---|
| committer | Colin Snover | 2017-07-30 19:10:50 -0500 | 
| commit | a79bd8b6457078d2cffc663fa8eb12ea75fbeb07 (patch) | |
| tree | 96be202c8f4688932562b7905d9f77cb67fae9f7 | |
| parent | d49bddfec6f4138aea1e44c8e61160276ebe20fd (diff) | |
| download | scummvm-rg350-a79bd8b6457078d2cffc663fa8eb12ea75fbeb07.tar.gz scummvm-rg350-a79bd8b6457078d2cffc663fa8eb12ea75fbeb07.tar.bz2 scummvm-rg350-a79bd8b6457078d2cffc663fa8eb12ea75fbeb07.zip | |
SCI32: Add uninitialized read workaround for Phant2
| -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 28cfe765b8..1bbca7559f 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -361,6 +361,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_PHANTASMAGORIA, -1, 64921, -1,              "Print", "addEdit",                         NULL,     1, { WORKAROUND_FAKE,   0 } }, // When trying to use the game debugger's flag setting command +	{ GID_PHANTASMAGORIA2,-1, 64926, -1,              "Thumb", "action",                          NULL,     1, { WORKAROUND_FAKE,   0 } }, // When dragging one of the volume sliders and releasing the mouse button over the +/- buttons  	{ 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 | 
