aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/tony/tony.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/tony/tony.cpp b/engines/tony/tony.cpp
index 6503c09aa8..c9583525d0 100644
--- a/engines/tony/tony.cpp
+++ b/engines/tony/tony.cpp
@@ -772,9 +772,9 @@ void TonyEngine::syncSoundSettings() {
}
void TonyEngine::saveSoundSettings() {
- ConfMan.setBool("speech_mute", GLOBALS._bCfgDubbing);
- ConfMan.setBool("sfx_mute", GLOBALS._bCfgSFX);
- ConfMan.setBool("music_mute", GLOBALS._bCfgMusic);
+ ConfMan.setBool("speech_mute", !GLOBALS._bCfgDubbing);
+ ConfMan.setBool("sfx_mute", !GLOBALS._bCfgSFX);
+ ConfMan.setBool("music_mute", !GLOBALS._bCfgMusic);
ConfMan.setInt("speech_volume", GLOBALS._nCfgDubbingVolume * 256 / 10);
ConfMan.setInt("sfx_volume", GLOBALS._nCfgSFXVolume * 256 / 10);