mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-20 00:45:10 +00:00
Fix reading the speech_mute setting, the global setting was read, instead of the domain specific setting.
svn-id: r27554
This commit is contained in:
parent
6689a6607b
commit
05ecd1bcc4
@ -238,7 +238,7 @@ void OptionsDialog::open() {
|
||||
int speed;
|
||||
int sliderMaxValue = _subSpeedSlider->getMaxValue();
|
||||
|
||||
_subMode = getSubtitleMode(ConfMan.getBool("subtitles", _domain), ConfMan.getBool("speech_mute"));
|
||||
_subMode = getSubtitleMode(ConfMan.getBool("subtitles", _domain), ConfMan.getBool("speech_mute", _domain));
|
||||
_subToggleButton->setLabel(_subModeDesc[_subMode]);
|
||||
|
||||
// Engines that reuse the subtitle speed widget set their own max value.
|
||||
|
Loading…
x
Reference in New Issue
Block a user