Add support for Chinese The DIG.

svn-id: r50375
This commit is contained in:
Eugene Sandulenko 2010-06-27 13:06:22 +00:00
parent 32ee0338f8
commit 25ca058fa8
3 changed files with 8 additions and 5 deletions

View File

@ -109,10 +109,9 @@ void ScummEngine::loadCJKFont() {
numChar = 8192;
break;
case Common::ZH_TWN:
if (_game.id == GID_CMI) {
// 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 ||

View File

@ -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;
}
}
}

View File

@ -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;