aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/sound/softseq/adlib.cpp
diff options
context:
space:
mode:
authorWalter van Niftrik2010-01-12 00:51:37 +0000
committerWalter van Niftrik2010-01-12 00:51:37 +0000
commit1a570df5dc3f1931eb9caadf2dddc1d08987c954 (patch)
tree6e59983f84fed7275402d00450e07f71cb1aee9e /engines/sci/sound/softseq/adlib.cpp
parentdc45c729a99714c27f5ce9d35cdf67e5fbcd8159 (diff)
downloadscummvm-rg350-1a570df5dc3f1931eb9caadf2dddc1d08987c954.tar.gz
scummvm-rg350-1a570df5dc3f1931eb9caadf2dddc1d08987c954.tar.bz2
scummvm-rg350-1a570df5dc3f1931eb9caadf2dddc1d08987c954.zip
SCI: Handle master volume inside music drivers
svn-id: r47261
Diffstat (limited to 'engines/sci/sound/softseq/adlib.cpp')
-rw-r--r--engines/sci/sound/softseq/adlib.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sound/softseq/adlib.cpp b/engines/sci/sound/softseq/adlib.cpp
index c8c12040ec..5d0c9bef66 100644
--- a/engines/sci/sound/softseq/adlib.cpp
+++ b/engines/sci/sound/softseq/adlib.cpp
@@ -229,7 +229,7 @@ int MidiDriver_Adlib::open(bool isSCI0) {
MidiDriver_Emulated::open();
- _mixer->playInputStream(Audio::Mixer::kMusicSoundType, &_mixerSoundHandle, this, -1, _mixer->kMaxChannelVolume, 0, DisposeAfterUse::NO);
+ _mixer->playInputStream(Audio::Mixer::kPlainSoundType, &_mixerSoundHandle, this, -1, _mixer->kMaxChannelVolume, 0, DisposeAfterUse::NO);
return 0;
}