diff options
| author | Martin Kiewitz | 2010-07-27 09:55:43 +0000 | 
|---|---|---|
| committer | Martin Kiewitz | 2010-07-27 09:55:43 +0000 | 
| commit | 6ff286c1f40fea7b7db92b44f45a8f3b31d53dc3 (patch) | |
| tree | 204a9344050a25dc6d663b49364491db8bd90d9e | |
| parent | 742a226312a8d4f31705a65bdd3c960ae007e8b3 (diff) | |
| download | scummvm-rg350-6ff286c1f40fea7b7db92b44f45a8f3b31d53dc3.tar.gz scummvm-rg350-6ff286c1f40fea7b7db92b44f45a8f3b31d53dc3.tar.bz2 scummvm-rg350-6ff286c1f40fea7b7db92b44f45a8f3b31d53dc3.zip | |
SCI: fixing workaround from r51353
svn-id: r51355
| -rw-r--r-- | engines/sci/engine/workarounds.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp index b13a458402..d58c4754fd 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -96,7 +96,7 @@ const SciWorkaroundEntry uninitializedReadWorkarounds[] = {      { GID_LSL6HIRES,      -1, 64950,  1,            "Feature", "handleEvent",    -1,    0, { WORKAROUND_FAKE,   0 } }, // at least when entering swimming pool area      { GID_LSL6HIRES,      -1, 64964,  0,              "DPath", "init",           -1,    1, { WORKAROUND_FAKE,   0 } }, // during the game      { GID_QFG2,           -1,    71,  0,        "theInvSheet", "doit",           -1,    1, { WORKAROUND_FAKE,   0 } }, // accessing the inventory -    { GID_SQ1,           103,   103,  0,               "hand", "internalEvent",  -1,    0, { WORKAROUND_FAKE,   0 } }, // spanish (and maybe early versions?) only: when moving cursor over input pad +    { GID_SQ1,           103,   103,  0,               "hand", "internalEvent",  -1,    1, { WORKAROUND_FAKE,   0 } }, // spanish (and maybe early versions?) only: when moving cursor over input pad      { GID_SQ1,            -1,   703,  0,                   "", "export 1",       -1,    0, { WORKAROUND_FAKE,   0 } }, // sub that's called from several objects while on sarien battle cruiser      { GID_SQ1,            -1,   703,  0,         "firePulsar", "changeState", 0x18a,    0, { WORKAROUND_FAKE,   0 } }, // export 1, but called locally (when shooting at aliens)      { GID_SQ4,            -1,   398,  0,            "showBox", "changeState",    -1,    0, { WORKAROUND_FAKE,   0 } }, // sq4cd: called when rummaging in Software Excess bargain bin | 
