diff options
author | Filippos Karapetis | 2010-11-21 02:08:35 +0000 |
---|---|---|
committer | Filippos Karapetis | 2010-11-21 02:08:35 +0000 |
commit | f2498b54cec805d14cfdb0d99d9dd455f4b29a95 (patch) | |
tree | c8e1065f8805d694aed2a7df60b231e8090a1d6b /engines/sci/engine | |
parent | 57d9de00f8234fa506f5dc5dd0b6ed390a364ede (diff) | |
download | scummvm-rg350-f2498b54cec805d14cfdb0d99d9dd455f4b29a95.tar.gz scummvm-rg350-f2498b54cec805d14cfdb0d99d9dd455f4b29a95.tar.bz2 scummvm-rg350-f2498b54cec805d14cfdb0d99d9dd455f4b29a95.zip |
SCI: Added 3 uninitialized temp fixes for the RAMA demo, which is now working
svn-id: r54404
Diffstat (limited to 'engines/sci/engine')
-rw-r--r-- | engines/sci/engine/workarounds.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp index 4c4cf5f74a..ee41608ea0 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -189,6 +189,9 @@ const SciWorkaroundEntry uninitializedReadWorkarounds[] = { { GID_QFG4, -1, 15, -1, "charInitScreen", "dispatchEvent", -1, 5, { WORKAROUND_FAKE, 0 } }, // floppy version, when viewing the character screen { GID_QFG4, -1, 64917, -1, "controlPlane", "setBitmap", -1, 3, { WORKAROUND_FAKE, 0 } }, // floppy version, when entering the game menu { GID_QFG4, -1, 64917, -1, "Plane", "setBitmap", -1, 3, { WORKAROUND_FAKE, 0 } }, // floppy version, happen sometimes in fights + { GID_RAMA, 12, 64950, -1, "InterfaceFeature", "handleEvent", -1, 0, { WORKAROUND_FAKE, 0 } }, // Demo, right when it starts + { GID_RAMA, 12, 64950, -1, "hiliteOptText", "handleEvent", -1, 0, { WORKAROUND_FAKE, 0 } }, // Demo, right when it starts + { GID_RAMA, 12, 64950, -1, "View", "handleEvent", -1, 0, { WORKAROUND_FAKE, 0 } }, // Demo, right when it starts { GID_SHIVERS, -1, 952, 0, "SoundManager", "stop", -1, 2, { WORKAROUND_FAKE, 0 } }, // Just after Sierra logo { GID_SQ1, 103, 103, 0, "hand", "internalEvent", -1, -1, { WORKAROUND_FAKE, 0 } }, // Spanish (and maybe early versions?) only: when moving cursor over input pad, temps 1 and 2 { GID_SQ1, -1, 703, 0, "", "export 1", -1, 0, { WORKAROUND_FAKE, 0 } }, // sub that's called from several objects while on sarien battle cruiser |