aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/tony/tony.cpp2
1 files changed, 1 insertions, 1 deletions
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