diff options
-rw-r--r-- | engines/scumm/charset.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/scumm/charset.cpp b/engines/scumm/charset.cpp index 46d034d880..bc10d73519 100644 --- a/engines/scumm/charset.cpp +++ b/engines/scumm/charset.cpp @@ -400,7 +400,8 @@ int CharsetRenderer::getStringWidth(int arg, const byte *text) { // Some localizations may override colors // See credits in Chinese COMI - if (chr == '^' && pos == 1) { + if (_vm->_game.id == GID_CMI && _vm->_language == Common::ZH_TWN + && chr == '^' && pos == 1) { if (text[pos] == 'c') { pos += 4; chr = text[pos++]; |