diff options
author | Matthew Hoops | 2007-08-14 14:40:11 +0000 |
---|---|---|
committer | Matthew Hoops | 2007-08-14 14:40:11 +0000 |
commit | 2b24e5cb1d2c576fb4e42473f13381c80041f204 (patch) | |
tree | 5174e87a833d6b8b46c71e85cccb229e821382da | |
parent | c9031ebb7ff14b862544bd62b99f6638625174bf (diff) | |
download | scummvm-rg350-2b24e5cb1d2c576fb4e42473f13381c80041f204.tar.gz scummvm-rg350-2b24e5cb1d2c576fb4e42473f13381c80041f204.tar.bz2 scummvm-rg350-2b24e5cb1d2c576fb4e42473f13381c80041f204.zip |
fix issues with parentheses
svn-id: r28618
-rw-r--r-- | engines/scumm/charset.cpp | 2 |
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; |