I18N: Fix language detection in UNIX (not everyone speaks German yet)

svn-id: r54494
This commit is contained in:
Jordi Vilalta Prat 2010-11-26 10:40:19 +00:00
parent ce9f7c0df1
commit 10476048f8

View File

@ -733,7 +733,7 @@ Common::Language OSystem_SDL::getSystemLanguage() const {
}
#else // WIN32
// Activating current locale settings
const char *locale = "de_DE.utf8";//setlocale(LC_ALL, "");
const char *locale = setlocale(LC_ALL, "");
// Detect the language from the locale
if (!locale) {