Archived
1
Fork 0

Change %lu -> %llu in debug menu

This commit is contained in:
Joshua Goins 2022-02-21 00:15:02 -05:00
parent b0d875832d
commit ed8adba8ff

View file

@ -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));