diff options
author | Jordi Vilalta Prat | 2010-11-26 10:40:19 +0000 |
---|---|---|
committer | Jordi Vilalta Prat | 2010-11-26 10:40:19 +0000 |
commit | 10476048f89ae0987d8883446ceba4594ff94a6e (patch) | |
tree | 8c112b324188d08a36124a24f5408c76a269a97c | |
parent | ce9f7c0df155a2b61a9d97f3fa7db1cb47fc3655 (diff) | |
download | scummvm-rg350-10476048f89ae0987d8883446ceba4594ff94a6e.tar.gz scummvm-rg350-10476048f89ae0987d8883446ceba4594ff94a6e.tar.bz2 scummvm-rg350-10476048f89ae0987d8883446ceba4594ff94a6e.zip |
I18N: Fix language detection in UNIX (not everyone speaks German yet)
svn-id: r54494
-rw-r--r-- | backends/platform/sdl/sdl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/sdl/sdl.cpp b/backends/platform/sdl/sdl.cpp index 9bebc63830..978f394963 100644 --- a/backends/platform/sdl/sdl.cpp +++ b/backends/platform/sdl/sdl.cpp @@ -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) { |