[Scummvm-cvs-logs] scummvm master -> 53ab0b28051eb346aa6a05c8c60e77d0f4cfa3cc
csnover
csnover at users.noreply.github.com
Mon Jul 11 23:24:03 CEST 2016
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
53ab0b2805 SCI32: Fix broken background volume in Torin during speech
Commit: 53ab0b28051eb346aa6a05c8c60e77d0f4cfa3cc
https://github.com/scummvm/scummvm/commit/53ab0b28051eb346aa6a05c8c60e77d0f4cfa3cc
Author: Colin Snover (github.com at zetafleet.com)
Date: 2016-07-11T16:23:46-05:00
Commit Message:
SCI32: Fix broken background volume in Torin during speech
Changed paths:
engines/sci/sound/soundcmd.cpp
diff --git a/engines/sci/sound/soundcmd.cpp b/engines/sci/sound/soundcmd.cpp
index c3c159d..b9a764c 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;
More information about the Scummvm-git-logs
mailing list