diff options
author | Colin Snover | 2016-03-14 10:23:23 -0500 |
---|---|---|
committer | Colin Snover | 2016-03-18 18:55:31 -0500 |
commit | d2c0aa004ba8dde210f593aba3b09c722c4a89f0 (patch) | |
tree | a376a60e68b081a76c3775236752ae671c91e129 | |
parent | abee16c56333e5caafef7f5b9f30ac775dd1f214 (diff) | |
download | scummvm-rg350-d2c0aa004ba8dde210f593aba3b09c722c4a89f0.tar.gz scummvm-rg350-d2c0aa004ba8dde210f593aba3b09c722c4a89f0.tar.bz2 scummvm-rg350-d2c0aa004ba8dde210f593aba3b09c722c4a89f0.zip |
SCI32: Add workaround for invalid temp read in Torin
-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 a4e19dc8b9..3832f4cf04 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -378,6 +378,7 @@ const SciWorkaroundEntry uninitializedReadWorkarounds[] = { { GID_SQ6, -1, 64950, -1, "Feature", "handleEvent", NULL, 0, { WORKAROUND_FAKE, 0 } }, // called when pressing "Start game" in the main menu, when entering the Orion's Belt bar (room 300), and perhaps other places { GID_SQ6, -1, 64964, 0, "DPath", "init", NULL, 1, { WORKAROUND_FAKE, 0 } }, // during the game { 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 SCI_WORKAROUNDENTRY_TERMINATOR }; |