aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorAlyssa Milburn2012-08-22 21:52:22 +0200
committerAlyssa Milburn2012-08-22 21:52:22 +0200
commit93f145773e316a5ec9e37f02e1c2f803e89ccf66 (patch)
tree74897c66dd31507f24bad70008589dd6e60b0f97 /engines
parentc3407390013b1e1826bdb31979a50f5e8a957f04 (diff)
downloadscummvm-rg350-93f145773e316a5ec9e37f02e1c2f803e89ccf66.tar.gz
scummvm-rg350-93f145773e316a5ec9e37f02e1c2f803e89ccf66.tar.bz2
scummvm-rg350-93f145773e316a5ec9e37f02e1c2f803e89ccf66.zip
TONY: Fix saveSoundSettings to use setInt for talkspeed.
Diffstat (limited to 'engines')
-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