diff options
author | sluicebox | 2019-08-01 19:58:46 -0700 |
---|---|---|
committer | sluicebox | 2019-08-01 19:58:46 -0700 |
commit | 0554ec80008da2d8b5d29465452574dd61e3da57 (patch) | |
tree | 0fe02af6bbfd0251841eec72b91247c5bee881f5 /engines/sci | |
parent | ccf904d8fffcf229a97686555192c983e9732bcb (diff) | |
download | scummvm-rg350-0554ec80008da2d8b5d29465452574dd61e3da57.tar.gz scummvm-rg350-0554ec80008da2d8b5d29465452574dd61e3da57.tar.bz2 scummvm-rg350-0554ec80008da2d8b5d29465452574dd61e3da57.zip |
SCI: Fix LB2 coal message in room 720
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/engine/workarounds.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/sci/engine/workarounds.cpp b/engines/sci/engine/workarounds.cpp index 3a74d1d0cc..170fd106e9 100644 --- a/engines/sci/engine/workarounds.cpp +++ b/engines/sci/engine/workarounds.cpp @@ -1205,6 +1205,8 @@ static const SciMessageWorkaroundEntry messageWorkarounds[] = { { GID_LAURABOW2, SCI_MEDIA_FLOPPY, K_LANG_NONE, 370, 1885, 1, 6, 16, 4, { MSG_WORKAROUND_REMAP, 1885, 1, 6, 16, 6, 0, 0, 0, NULL } }, // Missing message when clicking carbon paper on desk lamp in room 550, floppy 1.0 - bug #10706 { GID_LAURABOW2, SCI_MEDIA_FLOPPY, K_LANG_NONE, -1, 550, 5, 39, 6, 1, { MSG_WORKAROUND_REMAP, 550, 45, 39, 6, 1, 0, 0, 0, NULL } }, + // Looking at coal in room 720, message is prepended with carriage return and newline + { GID_LAURABOW2, SCI_MEDIA_CD, K_LANG_ENGLISH, -1, 720, 12, 1, 0, 1, { MSG_WORKAROUND_EXTRACT, 720, 12, 1, 0, 1, 99, 2, 255, NULL } }, // Using the hand icon on Keith in the Blue Room (missing message) - bug #6253 { GID_PQ1, SCI_MEDIA_ALL, K_LANG_NONE, -1, 38, 10, 4, 8, 1, { MSG_WORKAROUND_REMAP, 38, 10, 4, 9, 1, 0, 0, 0, NULL } }, // Using the eye icon on Keith in the Blue Room (no message and wrong talker) - bug #6253 |