diff options
author | Johannes Schickel | 2010-06-26 22:51:13 +0000 |
---|---|---|
committer | Johannes Schickel | 2010-06-26 22:51:13 +0000 |
commit | b7ab6ca3f16b4371b1a99caf041d0998e1c10fa3 (patch) | |
tree | a48c0bbe1c48d767570ac8ae300683d540017b9b | |
parent | b2f2c48c7e31d322399997f30d4e32369806f60e (diff) | |
download | scummvm-rg350-b7ab6ca3f16b4371b1a99caf041d0998e1c10fa3.tar.gz scummvm-rg350-b7ab6ca3f16b4371b1a99caf041d0998e1c10fa3.tar.bz2 scummvm-rg350-b7ab6ca3f16b4371b1a99caf041d0998e1c10fa3.zip |
Use "C" on Win32 as syslang in case the locale could not be determined.
svn-id: r50353
-rw-r--r-- | common/translation.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/translation.cpp b/common/translation.cpp index 1983c7652c..bf37cbd953 100644 --- a/common/translation.cpp +++ b/common/translation.cpp @@ -75,7 +75,7 @@ TranslationManager::TranslationManager() { _syslang += "_"; _syslang += ctryName; } else { - _syslang = "en_US"; + _syslang = "C"; } #else // WIN32 // Activating current locale settings |