aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2005-10-23 12:08:03 +0000
committerTravis Howell2005-10-23 12:08:03 +0000
commit4cb4bf4d543c73d6f014c0409fffe33dad7c4da1 (patch)
tree96c6c74e4dac9180007a55ecfa3c83f8131457bc /scumm
parentcd8533d722b288a3f73c997bc525eb2648cdd4fb (diff)
downloadscummvm-rg350-4cb4bf4d543c73d6f014c0409fffe33dad7c4da1.tar.gz
scummvm-rg350-4cb4bf4d543c73d6f014c0409fffe33dad7c4da1.tar.bz2
scummvm-rg350-4cb4bf4d543c73d6f014c0409fffe33dad7c4da1.zip
Correct subtitle speed keys in SCUMM.
svn-id: r19260
Diffstat (limited to 'scumm')
-rw-r--r--scumm/input.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/input.cpp b/scumm/input.cpp
index 7c499fec0d..48e9bbe02a 100644
--- a/scumm/input.cpp
+++ b/scumm/input.cpp
@@ -453,9 +453,9 @@ void ScummEngine::processKbd(bool smushMode) {
setupVolumes();
} else if (_lastKeyHit == '-' || _lastKeyHit == '+') { // Change text speed
if (_lastKeyHit == '+' && _defaultTalkDelay < 9)
- _defaultTalkDelay++;
- else if (_lastKeyHit == '-' && _defaultTalkDelay > 0)
_defaultTalkDelay--;
+ else if (_lastKeyHit == '-' && _defaultTalkDelay > 0)
+ _defaultTalkDelay++;
// Display the talk speed
ValueDisplayDialog dlg("Talk speed: ", 0, 9, _defaultTalkDelay, '+', '-');