diff options
author | Filippos Karapetis | 2010-06-29 20:12:42 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-06-29 20:12:42 +0000 |
commit | 42351265f16779569cf170ff0e85658db26e7ee7 (patch) | |
tree | afb2c29fc81454ba695d5954aa9d265ae16d652e | |
parent | bf2b059a63ff68d2688d48e24f5bdcf97de46335 (diff) | |
download | scummvm-rg350-42351265f16779569cf170ff0e85658db26e7ee7.tar.gz scummvm-rg350-42351265f16779569cf170ff0e85658db26e7ee7.tar.bz2 scummvm-rg350-42351265f16779569cf170ff0e85658db26e7ee7.zip |
Fixed 2 uninitialized reads in SQ6
svn-id: r50502
-rw-r--r-- | engines/sci/engine/vm.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/sci/engine/vm.cpp b/engines/sci/engine/vm.cpp index 2047482bac..fe37f09f31 100644 --- a/engines/sci/engine/vm.cpp +++ b/engines/sci/engine/vm.cpp @@ -288,6 +288,8 @@ static const UninitializedReadWorkaround uninitializedReadWorkarounds[] = { { 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 + { GID_SQ6, 0, "Game", "init", -1, 2, 0 }, + { GID_SQ6, 64950, "View", "handleEvent", -1, 0, 0 }, { (SciGameId)0, -1, NULL, NULL, -1, 0, 0 } }; |