From ed8adba8ff46d78dec37d31a05f21b8630d7852a Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Mon, 21 Feb 2022 00:15:02 -0500 Subject: [PATCH] Change %lu -> %llu in debug menu --- 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 72cb8a0..57eb929 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 %lu reference(s)", path.string().c_str(), block->references); + ImGui::Text("- %s has %llu reference(s)", path.string().c_str(), block->references); ImGui::PushStyleColor(ImGuiCol_Button, (ImVec4)ImColor(200, 0, 0));