diff options
author | et65 <et65@ashbringer.fr> | 2014-12-26 12:59:02 +0100 |
---|---|---|
committer | et65 <et65@ashbringer.fr> | 2014-12-26 12:59:02 +0100 |
commit | 4f557347ce26dcb3d7ce697ecd203ff92da5198a (patch) | |
tree | 85065b48d0b154e4aa4d8c563c9d4b5a68aa25b9 /src | |
parent | cb87b6d5461bc7df48cbd2627d780567ff477c21 (diff) |
Tools/MapExtractor: Fixed problem with DBFilesClient extraction for some locales.
Closes #13359
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/map_extractor/System.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/src/tools/map_extractor/System.cpp b/src/tools/map_extractor/System.cpp index 5c5ff5f9a9f..4ac7c9de1ff 100644 --- a/src/tools/map_extractor/System.cpp +++ b/src/tools/map_extractor/System.cpp @@ -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) |