aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2007-06-20 14:29:45 +0000
committerTravis Howell2007-06-20 14:29:45 +0000
commit05ecd1bcc4ffd89aa204945ae97b420e31f5d858 (patch)
treeb89aec4bf5483b5aff9f34933be67b2986591f41
parent6689a6607be844740b7f27e2d9021d36538001aa (diff)
downloadscummvm-rg350-05ecd1bcc4ffd89aa204945ae97b420e31f5d858.tar.gz
scummvm-rg350-05ecd1bcc4ffd89aa204945ae97b420e31f5d858.tar.bz2
scummvm-rg350-05ecd1bcc4ffd89aa204945ae97b420e31f5d858.zip
Fix reading the speech_mute setting, the global setting was read, instead of the domain specific setting.
svn-id: r27554
-rw-r--r--gui/options.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/gui/options.cpp b/gui/options.cpp
index e33f7a1e3d..a29a5cb56e 100644
--- a/gui/options.cpp
+++ b/gui/options.cpp
@@ -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.