diff options
author | Martin Kiewitz | 2010-06-26 16:54:09 +0000 |
---|---|---|
committer | Martin Kiewitz | 2010-06-26 16:54:09 +0000 |
commit | 61295bcc4ef0426e772211fc0a5212796acab83f (patch) | |
tree | f086bb5525c65a99557dfaad8163ea830e429167 /engines/sci/engine | |
parent | 41aca44b037c129d837021eb0d0e91990e41856a (diff) | |
download | scummvm-rg350-61295bcc4ef0426e772211fc0a5212796acab83f.tar.gz scummvm-rg350-61295bcc4ef0426e772211fc0a5212796acab83f.tar.bz2 scummvm-rg350-61295bcc4ef0426e772211fc0a5212796acab83f.zip |
SCI: pseudo-adding workaround for kq5 room 25 witch forest
svn-id: r50332
Diffstat (limited to 'engines/sci/engine')
-rw-r--r-- | engines/sci/engine/vm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/vm.cpp b/engines/sci/engine/vm.cpp index 46aeca1a68..1778d6e339 100644 --- a/engines/sci/engine/vm.cpp +++ b/engines/sci/engine/vm.cpp @@ -200,7 +200,7 @@ static const UninitializedReadWorkaround uninitializedReadWorkarounds[] = { { GID_LSL1, 720, "rm720", "init", -1, 0, 0 }, // age check room { GID_ISLANDBRAIN, 140, "piece", "init", -1, 3, 1 }, // first puzzle right at the start, some initialization variable. bnt is done on it, and it should be non-0 { GID_ISLANDBRAIN, 268, "anElement", "select", -1, 0, 0 }, // elements puzzle, gets used before super TextIcon - { GID_KQ5, 25, "rm025", "doit", -1, 0, 0 }, // inside witch forest + { GID_KQ5, 25, "rm025", "doit", -1, 0, 0 }, // inside witch forest, where the walking rock is { GID_SQ1, 703, "", "export 1", -1, 0, 0 }, // sub that's called from several objects while on sarien battle cruiser { GID_SQ1, 703, "firePulsar", "changeState", 0x18a, 0, 0 }, // export 1, but called locally (when shooting at aliens) { GID_SQ4, 928, "Narrator", "startText", -1, 1000, 1 }, // sq4cd: method returns this to the caller |