1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-06 06:32:56 +01:00

Update format string for size_t MAX_BANNERS

This commit is contained in:
Michał Janiszewski
2018-10-31 12:51:06 +01:00
committed by GitHub
parent bf80f738c1
commit a0c9e1b6c7

View File

@@ -1214,7 +1214,7 @@ static int32_t cc_show_limits(InteractiveConsole& console, [[maybe_unused]] cons
console.WriteFormatLine("Sprites: %d/%d", spriteCount, MAX_SPRITES);
console.WriteFormatLine("Map Elements: %d/%d", tileElementCount, MAX_TILE_ELEMENTS);
console.WriteFormatLine("Banners: %d/%d", bannerCount, MAX_BANNERS);
console.WriteFormatLine("Banners: %d/%zu", bannerCount, MAX_BANNERS);
console.WriteFormatLine("Rides: %d/%d", rideCount, MAX_RIDES);
console.WriteFormatLine("Staff: %d/%d", staffCount, STAFF_MAX_COUNT);
return 0;