diff options
author | Eugene Sandulenko | 2006-04-08 23:12:56 +0000 |
---|---|---|
committer | Eugene Sandulenko | 2006-04-08 23:12:56 +0000 |
commit | 5a2ad04a9eb48f0fec484861d09830b398db700d (patch) | |
tree | 67b8d9485284fa3d3a34b20de6974b54ab6b1985 /engines/kyra | |
parent | 3add3dae958e8cbb29e046f9f24e00d907dab319 (diff) | |
download | scummvm-rg350-5a2ad04a9eb48f0fec484861d09830b398db700d.tar.gz scummvm-rg350-5a2ad04a9eb48f0fec484861d09830b398db700d.tar.bz2 scummvm-rg350-5a2ad04a9eb48f0fec484861d09830b398db700d.zip |
Introduced language EN_ANY used for general English game entries. EN_USA and
EN_GRB should be used for games which have both variants. Currently it is
MM NES and BASS. All other are switched to EN_ANY.
svn-id: r21702
Diffstat (limited to 'engines/kyra')
-rw-r--r-- | engines/kyra/kyra.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/kyra/kyra.cpp b/engines/kyra/kyra.cpp index 4d8e93c9e6..48d58796d1 100644 --- a/engines/kyra/kyra.cpp +++ b/engines/kyra/kyra.cpp @@ -110,8 +110,8 @@ struct KyraLanguageTable { }; static const KyraLanguageTable kyra_languages[] = { - { "MAIN15.CPS", GF_ENGLISH, Common::EN_USA }, - { "MAIN_ENG.CPS", GF_ENGLISH, Common::EN_USA }, + { "MAIN15.CPS", GF_ENGLISH, Common::EN_ANY }, + { "MAIN_ENG.CPS", GF_ENGLISH, Common::EN_ANY }, { "MAIN_FRE.CPS", GF_FRENCH, Common::FR_FRA }, { "MAIN_GER.CPS", GF_GERMAN, Common::DE_DEU }, { "MAIN_SPA.CPS", GF_SPANISH, Common::ES_ESP }, @@ -124,7 +124,7 @@ using namespace Kyra; static Common::Language convertKyraLang(uint32 features) { if (features & GF_ENGLISH) { - return Common::EN_USA; + return Common::EN_ANY; } else if (features & GF_FRENCH) { return Common::FR_FRA; } else if (features & GF_GERMAN) { |