aboutsummaryrefslogtreecommitdiff
path: root/src/common/Common.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/Common.cpp')
-rw-r--r--src/common/Common.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/common/Common.cpp b/src/common/Common.cpp
index d2b3c9c8234..7337853b292 100644
--- a/src/common/Common.cpp
+++ b/src/common/Common.cpp
@@ -18,7 +18,8 @@
#include "Common.h"
-TC_COMMON_API char const* localeNames[TOTAL_LOCALES] = {
+TC_COMMON_API char const* localeNames[TOTAL_LOCALES] =
+{
"enUS",
"koKR",
"frFR",
@@ -33,7 +34,7 @@ TC_COMMON_API char const* localeNames[TOTAL_LOCALES] = {
LocaleConstant GetLocaleByName(const std::string& name)
{
for (uint32 i = 0; i < TOTAL_LOCALES; ++i)
- if (name==localeNames[i])
+ if (name == localeNames[i])
return LocaleConstant(i);
return LOCALE_enUS; // including enGB case