Tools/MapExtractor: Fixed problem with DBFilesClient extraction for some locales.

Closes #13359
This commit is contained in:
et65
2014-12-26 12:59:02 +01:00
parent cb87b6d546
commit 4f557347ce

View File

@@ -126,19 +126,19 @@ float CONF_flat_liquid_delta_limit = 0.001f; // If max - min less this value - l
uint32 CONF_Locale = 0;
#define LOCALES_COUNT 18
#define LOCALES_COUNT 17
char const* Locales[LOCALES_COUNT] =
{
"none", "unknown1",
"enUS", "koKR",
"unknown2", "frFR",
"deDE", "zhCN",
"esES", "zhTW",
"enGB", "enCN",
"enTW", "esMX",
"ruRU", "ptBR",
"itIT", "ptPT",
"none", "enUS",
"koKR", "unknown",
"frFR", "deDE",
"zhCN", "esES",
"zhTW", "enGB",
"enCN", "enTW",
"esMX", "ruRU",
"ptBR", "itIT",
"ptPT"
};
void CreateDir(std::string const& path)