From efbd2fe42feacbcc93a72932aadb35af8d8bd512 Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Thu, 15 Jul 2004 23:15:13 +0000 Subject: Use VAR_DEFAULT_TALK_DELAY svn-id: r14220 --- scumm/string.cpp | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'scumm/string.cpp') diff --git a/scumm/string.cpp b/scumm/string.cpp index 70b3cb0aa6..a580c481a8 100644 --- a/scumm/string.cpp +++ b/scumm/string.cpp @@ -155,8 +155,11 @@ void ScummEngine::CHARSET_1() { } // Always set to 60 - _talkDelay = 60; - + if (_version <= 6) + _talkDelay = 60; + else + _talkDelay = VAR(VAR_DEFAULT_TALK_DELAY); + if (!_keepText) { _charset->restoreCharsetBg(); } -- cgit v1.2.3