diff options
author | Travis Howell | 2004-07-22 05:53:56 +0000 |
---|---|---|
committer | Travis Howell | 2004-07-22 05:53:56 +0000 |
commit | c6f605501396491950d6d7ccc52767c7c12186aa (patch) | |
tree | 82aa8a23122e5c8561cc6a0edfa64516d1a95ce7 | |
parent | 2ab9807dd812845701fc144e49f0fd63974ada8c (diff) | |
download | scummvm-rg350-c6f605501396491950d6d7ccc52767c7c12186aa.tar.gz scummvm-rg350-c6f605501396491950d6d7ccc52767c7c12186aa.tar.bz2 scummvm-rg350-c6f605501396491950d6d7ccc52767c7c12186aa.zip |
Only used in scumm5 and later.
svn-id: r14300
-rw-r--r-- | scumm/string.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/string.cpp b/scumm/string.cpp index a3601ea3cf..d6836576c6 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]; } |