Tools/Map extractor: Use a standard format specifier when printing loaded area counts (like the map and liqtypes count)

This commit is contained in:
Nay
2012-07-23 16:36:18 +01:00
parent be3735275f
commit 370c982cc0

View File

@@ -294,7 +294,7 @@ void ReadAreaTableDBC()
areas[dbc.getRecord(x).getUInt(0)] = dbc.getRecord(x).getUInt(3);
SFileCloseFile(dbcFile);
printf("Done! (%zu areas loaded)\n", area_count);
printf("Done! (%u areas loaded)\n", area_count);
}
void ReadLiquidTypeTableDBC()