Fix(Core/Misc): Acore::StringFormat to fmt format (#19867)

Update MMapMgr.cpp
This commit is contained in:
天鹿
2024-09-05 17:54:44 +08:00
committed by GitHub
parent e5e514bbbe
commit 19264bea0b

View File

@@ -23,8 +23,8 @@
namespace MMAP
{
static char const* const MAP_FILE_NAME_FORMAT = "%s/mmaps/%03i.mmap";
static char const* const TILE_FILE_NAME_FORMAT = "%s/mmaps/%03i%02i%02i.mmtile";
static char const* const MAP_FILE_NAME_FORMAT = "{}/mmaps/{:03}.mmap";
static char const* const TILE_FILE_NAME_FORMAT = "{}/mmaps/{:03}{:02}{:02}.mmtile";
// ######################## MMapMgr ########################
MMapMgr::~MMapMgr()