diff options
author | Colin Snover | 2017-05-06 21:45:41 -0500 |
---|---|---|
committer | Colin Snover | 2017-05-06 21:45:41 -0500 |
commit | a403523fafafdaed7148b4c4a43c8b27ecdc63e6 (patch) | |
tree | ae2372527dc4bff42040c7b0a33a55ee40da454b | |
parent | c9f22eb1aa67a4017024bc2e1dbabdc561aa30c9 (diff) | |
download | scummvm-rg350-a403523fafafdaed7148b4c4a43c8b27ecdc63e6.tar.gz scummvm-rg350-a403523fafafdaed7148b4c4a43c8b27ecdc63e6.tar.bz2 scummvm-rg350-a403523fafafdaed7148b4c4a43c8b27ecdc63e6.zip |
SCI32: Add workaround for KQ7
Fixes Trac#9759.
-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 9ba055d89a..0b19c144d0 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -323,6 +323,7 @@ const SciWorkaroundEntry uninitializedReadWorkarounds[] = { { GID_KQ7, -1, 64996, 0, "User", "handleEvent", NULL, 1, { WORKAROUND_FAKE, 0 } }, // called when pushing a keyboard key { GID_KQ7, 2450, 2450, 0, "exBridge", "handleEvent", NULL, 0, { WORKAROUND_FAKE, 0 } }, // called when walking up to the throne in the cave in chapter 2 { GID_KQ7, 2450, 2450, 0, "maliciaComes", "handleEvent", NULL, 0, { WORKAROUND_FAKE, 0 } }, // when malicia appears at the southeast exit of the main chamber near the end of chapter 2 + { GID_KQ7, 5300, 5302, 0, "putOnMask", "handleEvent", NULL, 0, { WORKAROUND_FAKE, 0 } }, // in chapter 3, after using the mask on Valanice, click the jackalope hair in inventory - bug Trac#9759 { GID_KQ7, 6060, 64964, 0, "DPath", "init", NULL, 1, { WORKAROUND_FAKE, 0 } }, // after entering the harp crystal in chapter 5 { GID_LAURABOW, 37, 0, 0, "CB1", "doit", NULL, 1, { WORKAROUND_FAKE, 0 } }, // when going up the stairs - bug #5084 { GID_LAURABOW, -1, 967, 0, "myIcon", "cycle", NULL, 1, { WORKAROUND_FAKE, 0 } }, // having any portrait conversation coming up - initial bug #4971 |