diff options
author | Colin Snover | 2016-07-11 16:22:37 -0500 |
---|---|---|
committer | Colin Snover | 2016-07-11 16:23:46 -0500 |
commit | 53ab0b28051eb346aa6a05c8c60e77d0f4cfa3cc (patch) | |
tree | 3b53ccdb33979643ad1bbb80e41bafa6f305a0d2 /engines/sci/sound | |
parent | b37ebb61eb24eb861c9853bd26a092d686da209b (diff) | |
download | scummvm-rg350-53ab0b28051eb346aa6a05c8c60e77d0f4cfa3cc.tar.gz scummvm-rg350-53ab0b28051eb346aa6a05c8c60e77d0f4cfa3cc.tar.bz2 scummvm-rg350-53ab0b28051eb346aa6a05c8c60e77d0f4cfa3cc.zip |
SCI32: Fix broken background volume in Torin during speech
Diffstat (limited to 'engines/sci/sound')
-rw-r--r-- | engines/sci/sound/soundcmd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/sound/soundcmd.cpp b/engines/sci/sound/soundcmd.cpp index c3c159de55..b9a764c93a 100644 --- a/engines/sci/sound/soundcmd.cpp +++ b/engines/sci/sound/soundcmd.cpp @@ -722,7 +722,7 @@ reg_t SoundCommandParser::kDoSoundSetVolume(int argc, reg_t *argv, reg_t acc) { // SSCI unconditionally sets volume if it is digital audio if (_soundVersion >= SCI_VERSION_2_1_EARLY && musicSlot->isSample) { _music->soundSetVolume(musicSlot, value); - } else + } #endif if (musicSlot->volume != value) { musicSlot->volume = value; |