mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-28 14:13:24 +00:00
SCI32: Fix wrong GK1 sound volume sync
Fixes Trac#9793.
This commit is contained in:
parent
5fa0e4b780
commit
2c1a8790b3
@ -841,7 +841,7 @@ void GuestAdditions::syncGK1StartupVolumeFromScummVM(const int index, const reg_
|
||||
}
|
||||
|
||||
case kSoundsSoundType: {
|
||||
volume = (ConfMan.getInt("sound_volume") + 1) * MUSIC_VOLUME_MAX / Audio::Mixer::kMaxMixerVolume;
|
||||
volume = (ConfMan.getInt("sfx_volume") + 1) * MUSIC_VOLUME_MAX / Audio::Mixer::kMaxMixerVolume;
|
||||
selector = SELECTOR(soundVolume);
|
||||
break;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user