mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-02 23:01:42 +00:00
AGOS: Make the "m" hotkey respect the mute setting.
svn-id: r51102
This commit is contained in:
parent
e3d1ec482c
commit
97870a220d
@ -1048,7 +1048,7 @@ void AGOSEngine::syncSoundSettings() {
|
||||
if (ConfMan.hasKey("mute"))
|
||||
mute = ConfMan.getBool("mute");
|
||||
|
||||
_mixer->setVolumeForSoundType(Audio::Mixer::kMusicSoundType, (mute ? 0 : soundVolumeMusic));
|
||||
_mixer->setVolumeForSoundType(Audio::Mixer::kMusicSoundType, (mute ? 0 : (_musicPaused ? 0 : soundVolumeMusic)));
|
||||
_mixer->setVolumeForSoundType(Audio::Mixer::kSFXSoundType, (mute ? 0 : soundVolumeSFX));
|
||||
_mixer->setVolumeForSoundType(Audio::Mixer::kSpeechSoundType, (mute ? 0 : soundVolumeSpeech));
|
||||
|
||||
|
@ -602,7 +602,7 @@ bool AGOSEngine::processSpecialKeys() {
|
||||
if (_midiEnabled) {
|
||||
_midi.pause(_musicPaused);
|
||||
}
|
||||
_mixer->setVolumeForSoundType(Audio::Mixer::kMusicSoundType, (_musicPaused) ? 0 : ConfMan.getInt("music_volume"));
|
||||
syncSoundSettings();
|
||||
break;
|
||||
case 's':
|
||||
if (getGameId() == GID_SIMON1DOS) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user