diff options
author | Eugene Sandulenko | 2010-06-27 13:06:22 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2010-06-27 13:06:22 +0000 |
commit | 25ca058fa841f29b0e2999f446b9d6f8198d78e5 (patch) | |
tree | 139e0471b09b90b521ba3d5c3d21d92ed91dd4e7 /engines | |
parent | 32ee0338f8309bddfe61cc23db934bfb4447cdc2 (diff) | |
download | scummvm-rg350-25ca058fa841f29b0e2999f446b9d6f8198d78e5.tar.gz scummvm-rg350-25ca058fa841f29b0e2999f446b9d6f8198d78e5.tar.bz2 scummvm-rg350-25ca058fa841f29b0e2999f446b9d6f8198d78e5.zip |
Add support for Chinese The DIG.
svn-id: r50375
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/charset.cpp | 7 | ||||
-rw-r--r-- | engines/scumm/detection.cpp | 4 | ||||
-rw-r--r-- | engines/scumm/string.cpp | 2 |
3 files changed, 8 insertions, 5 deletions
diff --git a/engines/scumm/charset.cpp b/engines/scumm/charset.cpp index 0e0c0e129e..fa4804ce7d 100644 --- a/engines/scumm/charset.cpp +++ b/engines/scumm/charset.cpp @@ -109,10 +109,9 @@ void ScummEngine::loadCJKFont() { numChar = 8192; break; case Common::ZH_TWN: - if (_game.id == GID_CMI) { - fontFile = "chinese.fnt"; - numChar = 13630; - } + // Both The DIG and COMI use same font + fontFile = "chinese.fnt"; + numChar = 13630; break; case Common::ZH_CNA: if (_game.id == GID_FT || _game.id == GID_LOOM || _game.id == GID_INDY3 || diff --git a/engines/scumm/detection.cpp b/engines/scumm/detection.cpp index dbd86505a8..407b139c7e 100644 --- a/engines/scumm/detection.cpp +++ b/engines/scumm/detection.cpp @@ -314,7 +314,7 @@ static Common::Language detectLanguage(const Common::FSList &fslist, byte id) { case 449787: // 64f3fe479d45b52902cf88145c41d172 return Common::ES_ESP; } - } else { + } else { // The DIG switch (size) { case 248627: // 1fd585ac849d57305878c77b2f6c74ff return Common::DE_DEU; @@ -328,6 +328,8 @@ static Common::Language detectLanguage(const Common::FSList &fslist, byte id) { return Common::ES_ESP; case 223107: // 64f3fe479d45b52902cf88145c41d172 return Common::JA_JPN; + case 180730: // 424fdd60822722cdc75356d921dad9bf + return Common::ZH_TWN; } } } diff --git a/engines/scumm/string.cpp b/engines/scumm/string.cpp index 480e18e514..62fdf48440 100644 --- a/engines/scumm/string.cpp +++ b/engines/scumm/string.cpp @@ -1351,6 +1351,8 @@ void ScummEngine_v7::loadLanguageBundle() { // File contains Korean text (Hangul). just ignore it } else if (*ptr == 'j') { // File contains Japanese text. just ignore it + } else if (*ptr == 'c') { + // File contains Chinese text. just ignore it } else if (*ptr == 'e') { // File is encoded! enc = 0x13; |