diff options
author | Matthew Hoops | 2010-08-22 17:55:29 +0000 |
---|---|---|
committer | Matthew Hoops | 2010-08-22 17:55:29 +0000 |
commit | 66f7e4306c8159a7125d349bdb4208234d08cceb (patch) | |
tree | 21dd32827c5668d75fa7b030ceb4d88210150964 | |
parent | c85939597786466fea057c65cfb4be8f0023f9b9 (diff) | |
download | scummvm-rg350-66f7e4306c8159a7125d349bdb4208234d08cceb.tar.gz scummvm-rg350-66f7e4306c8159a7125d349bdb4208234d08cceb.tar.bz2 scummvm-rg350-66f7e4306c8159a7125d349bdb4208234d08cceb.zip |
SCI: Add uninit'd workaround for the SQ6 demo
svn-id: r52283
-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 47ae455d36..3f3b4933cd 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -184,6 +184,7 @@ const SciWorkaroundEntry uninitializedReadWorkarounds[] = { { GID_SQ4, -1, 398, 0, "showBox", "changeState", -1, 0, { WORKAROUND_FAKE, 0 } }, // CD: called when rummaging in Software Excess bargain bin { GID_SQ4, -1, 928, 0, "Narrator", "startText", -1, 1000, { WORKAROUND_FAKE, 1 } }, // CD: method returns this to the caller { GID_SQ5, 201, 201, 0, "buttonPanel", "doVerb", -1, 0, { WORKAROUND_FAKE, 1 } }, // when looking at the orange or red button - bug #3038563 + { GID_SQ6, 0, 0, 0, "SQ6", "init", -1, 2, { WORKAROUND_FAKE, 0 } }, // DEMO: called when the game starts { GID_SQ6, 100, 0, 0, "SQ6", "init", -1, 2, { WORKAROUND_FAKE, 0 } }, // called when the game starts { GID_SQ6, 100, 64950, 0, "View", "handleEvent", -1, 0, { WORKAROUND_FAKE, 0 } }, // called when pressing "Start game" in the main menu { GID_SQ6, -1, 64964, 0, "DPath", "init", -1, 1, { WORKAROUND_FAKE, 0 } }, // during the game |