[Scummvm-cvs-logs] scummvm master -> 3acf884126a4b0d94f418b39e62c533d695ec1bf

dreammaster dreammaster at scummvm.org
Sun Sep 20 23:44:57 CEST 2015


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
3acf884126 SHERLOCK: RT: Fix speech getting muted


Commit: 3acf884126a4b0d94f418b39e62c533d695ec1bf
    https://github.com/scummvm/scummvm/commit/3acf884126a4b0d94f418b39e62c533d695ec1bf
Author: Paul Gilbert (dreammaster at scummvm.org)
Date: 2015-09-20T17:44:25-04:00

Commit Message:
SHERLOCK: RT: Fix speech getting muted

Changed paths:
    engines/sherlock/sherlock.cpp



diff --git a/engines/sherlock/sherlock.cpp b/engines/sherlock/sherlock.cpp
index 3e3c579..d09fd0b 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);






More information about the Scummvm-git-logs mailing list