diff options
-rw-r--r-- | engines/kyra/plugin.cpp | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/engines/kyra/plugin.cpp b/engines/kyra/plugin.cpp index eb9e044e1a..0deb37368b 100644 --- a/engines/kyra/plugin.cpp +++ b/engines/kyra/plugin.cpp @@ -105,12 +105,15 @@ const PlainGameDescriptor kyra_list[] = { }; const Kyra1LanguageTable kyra1_languages[] = { - { "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 }, { "MAIN_ITA.CPS", GF_ITALIAN, Common::IT_ITA }, + + // default language + { "MAIN15.CPS", GF_ENGLISH, Common::EN_ANY }, + { "MAIN_ENG.CPS", GF_ENGLISH, Common::EN_ANY }, + { 0, 0, Common::UNK_LANG } }; |