diff options
| author | Johannes Schickel | 2006-05-28 11:46:22 +0000 | 
|---|---|---|
| committer | Johannes Schickel | 2006-05-28 11:46:22 +0000 | 
| commit | 655288132295264fcf10cd050c3ba4a6885acca8 (patch) | |
| tree | 9f505b83da5f71294250605a360de8ad62d54b56 | |
| parent | 727f66de391c8b0eab99f64602251ebbe4d2c2e3 (diff) | |
| download | scummvm-rg350-655288132295264fcf10cd050c3ba4a6885acca8.tar.gz scummvm-rg350-655288132295264fcf10cd050c3ba4a6885acca8.tar.bz2 scummvm-rg350-655288132295264fcf10cd050c3ba4a6885acca8.zip | |
This could fix detecting unknown non-english versions which contain a MAIN_ENG.CPS and a language specific image.
svn-id: r22709
| -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 }  }; | 
