mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21:40 +00:00
Add support for Chinese The DIG.
svn-id: r50375
This commit is contained in:
parent
32ee0338f8
commit
25ca058fa8
@ -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 ||
|
||||
|
@ -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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user