From 4bb500d0078f672c6847cfaa786292139af3c0c8 Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 15 Aug 2022 10:17:31 -0400 Subject: [PATCH] Fix stupid formatting warning, again --- engine/core/src/debug.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/engine/core/src/debug.cpp b/engine/core/src/debug.cpp index 57eb929..72cb8a0 100644 --- a/engine/core/src/debug.cpp +++ b/engine/core/src/debug.cpp @@ -36,7 +36,7 @@ void draw_asset() { for(auto& [path, block] : assetm->reference_blocks) { ImGui::PushID(&block); - ImGui::Text("- %s has %llu reference(s)", path.string().c_str(), block->references); + ImGui::Text("- %s has %lu reference(s)", path.string().c_str(), block->references); ImGui::PushStyleColor(ImGuiCol_Button, (ImVec4)ImColor(200, 0, 0));