diff options
author | Christopher Page | 2008-07-07 05:27:35 +0000 |
---|---|---|
committer | Christopher Page | 2008-07-07 05:27:35 +0000 |
commit | 8957971162a563d7bb4e0e74cff94cb7ffb69c48 (patch) | |
tree | eeedc2980dcd01d5d136252456cd158f407273df /engines | |
parent | 113aa1e77fa82e9dc41c6f7cd30070457e995f33 (diff) | |
download | scummvm-rg350-8957971162a563d7bb4e0e74cff94cb7ffb69c48.tar.gz scummvm-rg350-8957971162a563d7bb4e0e74cff94cb7ffb69c48.tar.bz2 scummvm-rg350-8957971162a563d7bb4e0e74cff94cb7ffb69c48.zip |
SCUMM: syncSoundSettings() now updates kPlainSoundType
svn-id: r32935
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/scumm.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp index 859f8320a2..0e6c0b3773 100644 --- a/engines/scumm/scumm.cpp +++ b/engines/scumm/scumm.cpp @@ -1678,6 +1678,7 @@ void ScummEngine::syncSoundSettings() { _musicEngine->setMusicVolume(soundVolumeMusic); } + _mixer->setVolumeForSoundType(Audio::Mixer::kPlainSoundType, soundVolumeMusic); _mixer->setVolumeForSoundType(Audio::Mixer::kSFXSoundType, soundVolumeSfx); _mixer->setVolumeForSoundType(Audio::Mixer::kMusicSoundType, soundVolumeMusic); _mixer->setVolumeForSoundType(Audio::Mixer::kSpeechSoundType, soundVolumeSpeech); |