From a0c9e1b6c7a33343488f82aa367046d644286e4e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Janiszewski?= Date: Wed, 31 Oct 2018 12:51:06 +0100 Subject: [PATCH] Update format string for size_t MAX_BANNERS --- src/openrct2/interface/InteractiveConsole.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/interface/InteractiveConsole.cpp b/src/openrct2/interface/InteractiveConsole.cpp index a9652823fa..cff55085d1 100644 --- a/src/openrct2/interface/InteractiveConsole.cpp +++ b/src/openrct2/interface/InteractiveConsole.cpp @@ -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;