aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/charset.cpp
diff options
context:
space:
mode:
authorMatthew Hoops2007-08-14 14:40:11 +0000
committerMatthew Hoops2007-08-14 14:40:11 +0000
commit2b24e5cb1d2c576fb4e42473f13381c80041f204 (patch)
tree5174e87a833d6b8b46c71e85cccb229e821382da /engines/scumm/charset.cpp
parentc9031ebb7ff14b862544bd62b99f6638625174bf (diff)
downloadscummvm-rg350-2b24e5cb1d2c576fb4e42473f13381c80041f204.tar.gz
scummvm-rg350-2b24e5cb1d2c576fb4e42473f13381c80041f204.tar.bz2
scummvm-rg350-2b24e5cb1d2c576fb4e42473f13381c80041f204.zip
fix issues with parentheses
svn-id: r28618
Diffstat (limited to 'engines/scumm/charset.cpp')
-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 35b829d983..59a8ef1a9a 100644
--- a/engines/scumm/charset.cpp
+++ b/engines/scumm/charset.cpp
@@ -63,7 +63,7 @@ void ScummEngine::loadCJKFont() {
fp.close();
}
_textSurfaceMultiplier = 2;
- } else if (_game.version >= 7 && _language == Common::KO_KOR || _language == Common::JA_JPN || _language == Common::ZH_TWN) {
+ } else if (_game.version >= 7 && (_language == Common::KO_KOR || _language == Common::JA_JPN || _language == Common::ZH_TWN)) {
int numChar = 0;
const char *fontFile = NULL;