aboutsummaryrefslogtreecommitdiff
path: root/src/tools/vmap4_extractor
diff options
context:
space:
mode:
authorShauren <shauren.trinity@gmail.com>2023-08-15 20:10:04 +0200
committerShauren <shauren.trinity@gmail.com>2023-08-15 20:10:04 +0200
commitaaa6e73c8ca6d60e943cb964605536eb78219db2 (patch)
treef5a0187925e646ef071d647efa7a5dac20501813 /src/tools/vmap4_extractor
parent825c697a764017349ca94ecfca8f30a8365666c0 (diff)
Core/Logging: Switch from fmt::sprintf to fmt::format (c++20 standard compatible api)
(cherry picked from commit d791afae1dfcfaf592326f787755ca32d629e4d3)
Diffstat (limited to 'src/tools/vmap4_extractor')
-rw-r--r--src/tools/vmap4_extractor/vmapexport.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/vmap4_extractor/vmapexport.cpp b/src/tools/vmap4_extractor/vmapexport.cpp
index 933a81425f8..f82553e29cc 100644
--- a/src/tools/vmap4_extractor/vmapexport.cpp
+++ b/src/tools/vmap4_extractor/vmapexport.cpp
@@ -154,7 +154,7 @@ bool ExtractSingleWmo(std::string& fname)
strncpy(temp, fname.c_str(), 1024);
temp[fname.length()-4] = 0;
- WMOGroup fgroup(Trinity::StringFormat("%s_%03u.wmo", temp, i));
+ WMOGroup fgroup(Trinity::StringFormat("{}_{:03}.wmo", temp, i));
if (!fgroup.open(&froot))
{
printf("Could not open all Group file for: %s\n", plain_name);
@@ -316,7 +316,7 @@ bool fillArchiveNameVector(std::vector<std::string>& pArchiveNames)
// now, scan for the patch levels in the core dir
printf("Scanning patch levels from data directory.\n");
- if (!scan_patches(Trinity::StringFormat("%spatch", input_path).c_str(), pArchiveNames))
+ if (!scan_patches(Trinity::StringFormat("{}patch", input_path).c_str(), pArchiveNames))
return(false);
// now, scan for the patch levels in locale dirs
@@ -325,7 +325,7 @@ bool fillArchiveNameVector(std::vector<std::string>& pArchiveNames)
for (std::string const& locale : locales)
{
printf("Locale: %s\n", locale.c_str());
- if(scan_patches(Trinity::StringFormat("%s%s/patch-%s", input_path, locale.c_str(), locale.c_str()).c_str(), pArchiveNames))
+ if(scan_patches(Trinity::StringFormat("{}{}/patch-{}", input_path, locale, locale).c_str(), pArchiveNames))
foundOne = true;
}