Use VAR_DEFAULT_TALK_DELAY

svn-id: r14220
This commit is contained in:
Travis Howell 2004-07-15 23:15:13 +00:00
parent 85124a75e3
commit efbd2fe42f
2 changed files with 8 additions and 3 deletions

View file

@ -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();
}