aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2004-07-22 05:53:56 +0000
committerTravis Howell2004-07-22 05:53:56 +0000
commitc6f605501396491950d6d7ccc52767c7c12186aa (patch)
tree82aa8a23122e5c8561cc6a0edfa64516d1a95ce7 /scumm
parent2ab9807dd812845701fc144e49f0fd63974ada8c (diff)
downloadscummvm-rg350-c6f605501396491950d6d7ccc52767c7c12186aa.tar.gz
scummvm-rg350-c6f605501396491950d6d7ccc52767c7c12186aa.tar.bz2
scummvm-rg350-c6f605501396491950d6d7ccc52767c7c12186aa.zip
Only used in scumm5 and later.
svn-id: r14300
Diffstat (limited to 'scumm')
-rw-r--r--scumm/string.cpp4
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];
}