diff options
author | Colin Snover | 2017-01-25 11:02:02 -0600 |
---|---|---|
committer | Colin Snover | 2017-03-30 19:46:27 -0500 |
commit | 5e81db8fd09d1783bd9503ac875eb36d9d1b3b80 (patch) | |
tree | f0bf5854be7efa40b56b2f514b75080edd67efbc /engines/sci | |
parent | 159438848becb0fd51dc0763300e3ab6c0a9f331 (diff) | |
download | scummvm-rg350-5e81db8fd09d1783bd9503ac875eb36d9d1b3b80.tar.gz scummvm-rg350-5e81db8fd09d1783bd9503ac875eb36d9d1b3b80.tar.bz2 scummvm-rg350-5e81db8fd09d1783bd9503ac875eb36d9d1b3b80.zip |
SCI32: Add workaround for uninitialised read in Torin
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 1b9fe7b1c2..148e9e77c3 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -412,6 +412,7 @@ const SciWorkaroundEntry uninitializedReadWorkarounds[] = { { GID_TORIN, -1, 64017, 0, "oFlags", "clear", NULL, 0, { WORKAROUND_FAKE, 0 } }, // entering Torin's home in the French version { GID_TORIN, 10000, 64029, 0, "oMessager", "nextMsg", NULL, 3, { WORKAROUND_FAKE, 0 } }, // start of chapter one { GID_TORIN, 20100, 64964, 0, "DPath", "init", NULL, 1, { WORKAROUND_FAKE, 0 } }, // going down the cliff at the first screen of chapter 2 (washing area) + { GID_TORIN, 61100, 64888, 0, "Torin", "autorestore", NULL, 11, { WORKAROUND_FAKE, 0 } }, // after attempting to restore a save game saved with the wrong game version SCI_WORKAROUNDENTRY_TERMINATOR }; |