aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm
diff options
context:
space:
mode:
authorEugene Sandulenko2007-07-22 21:01:31 +0000
committerEugene Sandulenko2007-07-22 21:01:31 +0000
commit8c21abc990c3130b2e76bb33b8642a74ce145574 (patch)
tree23e45d450c9567b366a352758328acb7c7466e54 /engines/scumm
parent19ad20c201adca6bac5dff1cea4da34d8a99a6c3 (diff)
downloadscummvm-rg350-8c21abc990c3130b2e76bb33b8642a74ce145574.tar.gz
scummvm-rg350-8c21abc990c3130b2e76bb33b8642a74ce145574.tar.bz2
scummvm-rg350-8c21abc990c3130b2e76bb33b8642a74ce145574.zip
Fix Chinese character widths.
svn-id: r28166
Diffstat (limited to 'engines/scumm')
-rw-r--r--engines/scumm/charset.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/scumm/charset.cpp b/engines/scumm/charset.cpp
index 7d115d4c4b..3c910bd239 100644
--- a/engines/scumm/charset.cpp
+++ b/engines/scumm/charset.cpp
@@ -1778,7 +1778,7 @@ void CharsetRendererNut::printChar(int chr, bool ignoreCharsetMask) {
_str.left = _left;
// Original keeps glyph width and character dimensions separately
- if (_vm->_language == Common::ZH_TWN)
+ if (_vm->_language == Common::ZH_TWN && width == 16)
width = 17;
_left += width;