aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Kiewitz2010-08-03 12:39:11 +0000
committerMartin Kiewitz2010-08-03 12:39:11 +0000
commit425b90f6d21c8fec27565b649f8d6bc10d926719 (patch)
tree2b744c9e6a233cd30ef14d148578f030bbbb60da
parent3b4b00cf5099e3720ae93bff17c7778389b5ff62 (diff)
downloadscummvm-rg350-425b90f6d21c8fec27565b649f8d6bc10d926719.tar.gz
scummvm-rg350-425b90f6d21c8fec27565b649f8d6bc10d926719.tar.bz2
scummvm-rg350-425b90f6d21c8fec27565b649f8d6bc10d926719.zip
SCI: adding kDoSound(fade) workaround table to sci1early
fixes kq5 bug #3037594 thx to [md5] for testing svn-id: r51686
-rw-r--r--engines/sci/engine/kernel_tables.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/kernel_tables.h b/engines/sci/engine/kernel_tables.h
index cc1c622e2d..b2b8eb593e 100644
--- a/engines/sci/engine/kernel_tables.h
+++ b/engines/sci/engine/kernel_tables.h
@@ -111,7 +111,7 @@ static const SciKernelMapSubEntry kDoSound_subops[] = {
// it actually does internally
{ SIG_SOUNDSCI1EARLY, 8, MAP_CALL(DoSoundStop), NULL, NULL },
{ SIG_SOUNDSCI1EARLY, 9, MAP_CALL(DoSoundPause), "[o0]i", NULL },
- { SIG_SOUNDSCI1EARLY, 10, MAP_CALL(DoSoundFade), "oiiii", NULL },
+ { SIG_SOUNDSCI1EARLY, 10, MAP_CALL(DoSoundFade), "oiiii", kDoSoundFade_workarounds },
{ SIG_SOUNDSCI1EARLY, 11, MAP_CALL(DoSoundUpdateCues), "o", NULL },
{ SIG_SOUNDSCI1EARLY, 12, MAP_CALL(DoSoundSendMidi), "oiii", NULL },
{ SIG_SOUNDSCI1EARLY, 13, MAP_CALL(DoSoundReverb), "i", NULL },