diff options
author | Travis Howell | 2005-10-26 07:13:33 +0000 |
---|---|---|
committer | Travis Howell | 2005-10-26 07:13:33 +0000 |
commit | 917cb5624d28af605cb9eb77fd21eb5e52efeeac (patch) | |
tree | 399b138a271cb8234146bafae9f85af589b31740 | |
parent | b81b771d1542a476f0372a761d1c6acda6a54ae5 (diff) | |
download | scummvm-rg350-917cb5624d28af605cb9eb77fd21eb5e52efeeac.tar.gz scummvm-rg350-917cb5624d28af605cb9eb77fd21eb5e52efeeac.tar.bz2 scummvm-rg350-917cb5624d28af605cb9eb77fd21eb5e52efeeac.zip |
Add patch, with slight change to dialog title:
1338105 - Possible fix for confusing "talk speed" behaviour
svn-id: r19307
-rw-r--r-- | scumm/input.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/input.cpp b/scumm/input.cpp index 1cbd13cd27..61c568000e 100644 --- a/scumm/input.cpp +++ b/scumm/input.cpp @@ -458,8 +458,8 @@ void ScummEngine::processKbd(bool smushMode) { _defaultTalkDelay++; // Display the talk speed - ValueDisplayDialog dlg("Talk delay: ", 0, 9, _defaultTalkDelay, '-', '+'); - _defaultTalkDelay = runDialog(dlg); + ValueDisplayDialog dlg("Text speed: ", 0, 9, 9 - _defaultTalkDelay, '+', '-'); + _defaultTalkDelay = 9 - runDialog(dlg); if (VAR_CHARINC != 0xFF) VAR(VAR_CHARINC) = _defaultTalkDelay; |