diff options
Diffstat (limited to 'engines')
-rw-r--r-- | engines/sherlock/sherlock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sherlock/sherlock.cpp b/engines/sherlock/sherlock.cpp index 3e3c579fdf..d09fd0b270 100644 --- a/engines/sherlock/sherlock.cpp +++ b/engines/sherlock/sherlock.cpp @@ -238,7 +238,7 @@ void SherlockEngine::loadConfig() { void SherlockEngine::saveConfig() { ConfMan.setBool("mute", !_sound->_digitized); ConfMan.setBool("music_mute", !_music->_musicOn); - ConfMan.setBool("speech_mute", !_sound->_voices); + ConfMan.setBool("speech_mute", !_sound->_speechOn); ConfMan.setInt("font", _screen->fontNumber()); ConfMan.setBool("fade_style", _screen->_fadeStyle); |