diff options
author | Max Horn | 2007-02-15 23:12:33 +0000 |
---|---|---|
committer | Max Horn | 2007-02-15 23:12:33 +0000 |
commit | 26a3ad56e5fbceea3b8fc111a9b1ad37ca2bd78a (patch) | |
tree | 73dbce643bca8c5e37cb1b981d98aa3e7160aeff | |
parent | 15043066f2d7644ee7e885b1c57227bfeec34c3a (diff) | |
download | scummvm-rg350-26a3ad56e5fbceea3b8fc111a9b1ad37ca2bd78a.tar.gz scummvm-rg350-26a3ad56e5fbceea3b8fc111a9b1ad37ca2bd78a.tar.bz2 scummvm-rg350-26a3ad56e5fbceea3b8fc111a9b1ad37ca2bd78a.zip |
Added italian LANGUAGE.TAB/.BND details (thanks to Glorfindel in forum thread 3445)
svn-id: r25616
-rw-r--r-- | engines/scumm/plugin.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/scumm/plugin.cpp b/engines/scumm/plugin.cpp index 04571fef2a..f4d52e7722 100644 --- a/engines/scumm/plugin.cpp +++ b/engines/scumm/plugin.cpp @@ -1028,6 +1028,8 @@ static Common::Language detectLanguage(const FSList &fslist, byte id) { return Common::DE_DEU; case 461746: // 35bbe0e4d573b318b7b2092c331fd1fa return Common::FR_FRA; + case 443439: // 4689d013f67aabd7c35f4fd7c4b4ad69 + return Common::IT_ITA; } } else { switch (size) { @@ -1035,6 +1037,8 @@ static Common::Language detectLanguage(const FSList &fslist, byte id) { return Common::DE_DEU; case 257460: // 04cf6a6ba6f57e517bc40eb81862cfb0 return Common::FR_FRA; + case 231402: // 93d13fcede954c78e65435592182a4db + return Common::IT_ITA; } } } |