mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-23 18:36:31 +01:00
Tools/MeshExtractor: Fix warnings
This commit is contained in:
@@ -222,7 +222,7 @@ namespace MMAP
|
||||
else
|
||||
{
|
||||
--_loadedTiles;
|
||||
TC_LOG_INFO("maps", "MMAP::UnloadMap: Unloaded mmtile [%02u, %02u] from %03u", mapId, x, y, mapId);
|
||||
TC_LOG_INFO("maps", "MMAP::UnloadMap: Unloaded mmtile [%02u, %02u] from %03u", x, y, mapId);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -62,7 +62,7 @@ void ExtractMMaps(std::set<uint32>& mapIds, uint32 threads)
|
||||
Utils::CreateDir(basePath);
|
||||
|
||||
DBC* dbc = MPQHandler->GetDBC("Map");
|
||||
printf("Map.dbc contains %u rows.\n", dbc->Records.size());
|
||||
printf("Map.dbc contains " SIZEFMTD " rows.\n", dbc->Records.size());
|
||||
for (std::vector<Record*>::iterator itr = dbc->Records.begin(); itr != dbc->Records.end(); ++itr)
|
||||
{
|
||||
uint32 mapId = (*itr)->Values[0];
|
||||
|
||||
Reference in New Issue
Block a user