diff options
author | Nathan Handley <NathanHandley@users.noreply.github.com> | 2024-12-02 08:40:13 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-12-02 15:40:13 +0100 |
commit | a704556ae8daed89504c8d74999c0e58797f91cf (patch) | |
tree | a9147ef783c5ce61e73d5630fcec3a3a5612af6f /src | |
parent | 8c387fa2b8b4d1dac8902a3b3dc33bf24210fbb6 (diff) |
fix(Tools/MapExtractor) Update MPQ patch iterator to also load patch files 4 through 9 (#20815)
Diffstat (limited to 'src')
-rw-r--r-- | src/tools/map_extractor/System.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/map_extractor/System.cpp b/src/tools/map_extractor/System.cpp index 6f9806e347..0b0f744f41 100644 --- a/src/tools/map_extractor/System.cpp +++ b/src/tools/map_extractor/System.cpp @@ -1144,7 +1144,7 @@ void LoadLocaleMPQFiles(int const locale) sprintf(filename, "%s/Data/%s/locale-%s.MPQ", input_path, langs[locale], langs[locale]); new MPQArchive(filename); - for (int i = 1; i < 5; ++i) + for (int i = 1; i <= 9; ++i) { char ext[3] = ""; if (i > 1) |