Change %lu -> %llu in debug menu
This commit is contained in:
parent
b0d875832d
commit
ed8adba8ff
1 changed files with 1 additions and 1 deletions
|
@ -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));
|
||||
|
||||
|
|
Reference in a new issue