fix(Tools/MapExtractor) Update MPQ patch iterator to also load patch files 4 through 9 (#20815)

This commit is contained in:
Nathan Handley
2024-12-02 08:40:13 -06:00
committed by GitHub
parent 8c387fa2b8
commit a704556ae8

View File

@@ -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)