aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/detection.cpp
diff options
context:
space:
mode:
authorEugene Sandulenko2010-06-27 13:06:22 +0000
committerEugene Sandulenko2010-06-27 13:06:22 +0000
commit25ca058fa841f29b0e2999f446b9d6f8198d78e5 (patch)
tree139e0471b09b90b521ba3d5c3d21d92ed91dd4e7 /engines/scumm/detection.cpp
parent32ee0338f8309bddfe61cc23db934bfb4447cdc2 (diff)
downloadscummvm-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/scumm/detection.cpp')
-rw-r--r--engines/scumm/detection.cpp4
1 files changed, 3 insertions, 1 deletions
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;
}
}
}