Since BASS treats speech separately from other sounds, let's use the

speech_volume setting for that, as suggested on the forum.

svn-id: r31941
This commit is contained in:
Torbjörn Andersson 2008-05-08 05:05:47 +00:00
parent 500237d8ed
commit 89e0c0b315

View File

@ -435,6 +435,7 @@ int SkyEngine::init() {
SkyEngine::_systemVars.systemFlags |= SF_MUS_OFF;
}
_mixer->setVolumeForSoundType(Audio::Mixer::kSFXSoundType, ConfMan.getInt("sfx_volume"));
_mixer->setVolumeForSoundType(Audio::Mixer::kSpeechSoundType, ConfMan.getInt("speech_volume"));
_mixer->setVolumeForSoundType(Audio::Mixer::kMusicSoundType, ConfMan.getInt("music_volume"));
_floppyIntro = ConfMan.getBool("alt_intro");