diff options
| author | Filippos Karapetis | 2010-07-28 22:36:22 +0000 | 
|---|---|---|
| committer | Filippos Karapetis | 2010-07-28 22:36:22 +0000 | 
| commit | fb35d46c1d5a2dd1b1b35d3a5a173b7a896c56c6 (patch) | |
| tree | 9589ca9a3d8e29c2a097c1d2d59e3faf181e6814 | |
| parent | 021c5d11dba67951113e293a14347869316c47e1 (diff) | |
| download | scummvm-rg350-fb35d46c1d5a2dd1b1b35d3a5a173b7a896c56c6.tar.gz scummvm-rg350-fb35d46c1d5a2dd1b1b35d3a5a173b7a896c56c6.tar.bz2 scummvm-rg350-fb35d46c1d5a2dd1b1b35d3a5a173b7a896c56c6.zip | |
SCI: Extended the LB2 workaround for bug #3035068 to all rooms. Fixes bug #3036274, "LB2CD: Crash in Police Station, asking about Ziggy"
svn-id: r51443
| -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 647d53ae4f..8b41b7cc28 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -86,7 +86,7 @@ const SciWorkaroundEntry uninitializedReadWorkarounds[] = {  	{ GID_KQ7,            30, 64996,  0,               "User", "handleEvent",    -1,    1, { WORKAROUND_FAKE,   0 } }, // called when pushing a keyboard key  	{ GID_LAURABOW,       44,   967,  0,             "myIcon", "cycle",          -1,    1, { WORKAROUND_FAKE,   0 } }, // second dialog box after the intro, when talking with Lillian - bug #3034985  	{ GID_LAURABOW2,      -1,    24,  0,              "gcWin", "open",           -1,    5, { WORKAROUND_FAKE, 0xf } }, // is used as priority for game menu -	{ GID_LAURABOW2,     230,    21,  0,      "dropCluesCode", "doit",           -1,    1, { WORKAROUND_FAKE,   0 } }, // when asking the reporter about the burglary - bug #3035068 +	{ GID_LAURABOW2,      -1,    21,  0,      "dropCluesCode", "doit",           -1,    1, { WORKAROUND_FAKE,   0 } }, // when asking some questions (e.g. the reporter about the burglary, or the policeman about Ziggy) - bugs #3035068, #3036274  	{ GID_LSL1,          250,   250,  0,           "increase", "handleEvent",    -1,    2, { WORKAROUND_FAKE,   0 } }, // casino, playing game, increasing bet  	{ GID_LSL1,          720,   720,  0,              "rm720", "init",           -1,    0, { WORKAROUND_FAKE,   0 } }, // age check room  	{ GID_LSL3,          340,   340,  0,        "ComicScript", "changeState",    -1,   -1, { WORKAROUND_FAKE,   0 } }, // right after entering the 3 ethnic groups inside comedy club (temps 200, 201, 202, 203) | 
