(svn r6288) -Regression: Restore automatic language detection, which was broken in r4886 when the language codes got extended

This commit is contained in:
tron 2006-08-31 22:07:49 +00:00
parent cdf3972733
commit 718c0214bf
1 changed files with 1 additions and 1 deletions

View File

@ -1250,7 +1250,7 @@ void InitializeLanguagePacks(void)
dl->ent[m].name = strdup(hdr.name);
if (strcmp(hdr.name, "English") == 0) fallback = m;
if (strcmp(hdr.isocode, lang) == 0) def = m;
if (strncmp(hdr.isocode, lang, 2) == 0) def = m;
m++;
}