From 93f145773e316a5ec9e37f02e1c2f803e89ccf66 Mon Sep 17 00:00:00 2001 From: Alyssa Milburn Date: Wed, 22 Aug 2012 21:52:22 +0200 Subject: TONY: Fix saveSoundSettings to use setInt for talkspeed. --- engines/tony/tony.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engines/tony/tony.cpp b/engines/tony/tony.cpp index 6100596b0e..081556572a 100644 --- a/engines/tony/tony.cpp +++ b/engines/tony/tony.cpp @@ -667,7 +667,7 @@ void TonyEngine::saveSoundSettings() { ConfMan.setInt("music_volume", GLOBALS._nCfgMusicVolume * 256 / 10); ConfMan.setBool("subtitles", GLOBALS._bShowSubtitles); - ConfMan.setBool("talkspeed", GLOBALS._nCfgTextSpeed); + ConfMan.setInt("talkspeed", GLOBALS._nCfgTextSpeed * 256 / 10); } } // End of namespace Tony -- cgit v1.2.3