diff options
author | Colin Snover | 2017-07-02 23:46:09 -0500 |
---|---|---|
committer | Colin Snover | 2017-07-06 19:12:36 -0500 |
commit | 1466fb247e9f24bfcc61e977e71602fadf26c148 (patch) | |
tree | e179d9da8f6a54ae4edd63b08d763d995e072e5f /engines | |
parent | 798c6bf34ddfc64f23bac3bf3f26539aaab72f2d (diff) | |
download | scummvm-rg350-1466fb247e9f24bfcc61e977e71602fadf26c148.tar.gz scummvm-rg350-1466fb247e9f24bfcc61e977e71602fadf26c148.tar.bz2 scummvm-rg350-1466fb247e9f24bfcc61e977e71602fadf26c148.zip |
SCI32: Add workaround for SQ6
Diffstat (limited to 'engines')
-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 ae6e2f75bf..66c40d6f61 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -418,6 +418,7 @@ const SciWorkaroundEntry uninitializedReadWorkarounds[] = { { GID_SQ6, -1, 64964, 0, "DPath", "init", NULL, 1, { WORKAROUND_FAKE, 0 } }, // during the game { GID_SQ6, 210, 210, 0, "buttonSecret", "doVerb", NULL, 0, { WORKAROUND_FAKE, 0 } }, // after winning the first round of stooge fighter 3 { GID_SQ6, -1, 64994, -1, "Game", "restore", NULL, 1, { WORKAROUND_FAKE, 0 } }, // When trying to load an invalid save game from the launcher + { GID_SQ6, -1, 64921, -1, "Print", "addEdit", NULL, 1, { WORKAROUND_FAKE, 0 } }, // When trying to use the game debugger's flag setting command { 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, -1, 64892, 0, "oEventHandler", "killAllEventHogs", NULL, 1, { WORKAROUND_FAKE, 0 } }, // when pressing the hint button when the game is about to transition to a new room (race condition) - Trac#9810 |