Core/Common: Correct the linking of localeNames

This commit is contained in:
Naios
2016-08-27 11:40:13 +02:00
parent 0c97ef5f74
commit 13e5817417
2 changed files with 2 additions and 2 deletions

View File

@@ -18,7 +18,7 @@
#include "Common.h"
TC_COMMON_API char const* localeNames[TOTAL_LOCALES] =
char const* localeNames[TOTAL_LOCALES] =
{
"enUS",
"koKR",

View File

@@ -133,7 +133,7 @@ enum LocaleConstant
#define MAX_LOCALES 8
#define MAX_ACCOUNT_TUTORIAL_VALUES 8
extern "C" TC_COMMON_API char const* localeNames[TOTAL_LOCALES];
TC_COMMON_API extern char const* localeNames[TOTAL_LOCALES];
TC_COMMON_API LocaleConstant GetLocaleByName(const std::string& name);