From c6f605501396491950d6d7ccc52767c7c12186aa Mon Sep 17 00:00:00 2001 From: Travis Howell Date: Thu, 22 Jul 2004 05:53:56 +0000 Subject: [PATCH] Only used in scumm5 and later. svn-id: r14300 --- scumm/string.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scumm/string.cpp b/scumm/string.cpp index a3601ea3cf8..d6836576c67 100644 --- a/scumm/string.cpp +++ b/scumm/string.cpp @@ -136,7 +136,7 @@ void ScummEngine::CHARSET_1() { _charset->_right = _string[0].right; _charset->setColor(_charsetColor); - if (_version > 3) // FIXME + if (_version >= 5) for (i = 0; i < 4; i++) _charsetColorMap[i] = _charsetData[_charset->getCurID()][i]; @@ -333,7 +333,7 @@ void ScummEngine::drawString(int a, const byte *msg) { _charset->_disableOffsX = _charset->_firstChar = true; _charset->setCurID(_string[a].charset); - if (_version > 3) { + if (_version >= 5) { for (i = 0; i < 4; i++) _charsetColorMap[i] = _charsetData[_charset->getCurID()][i]; }