mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-03 13:31:18 +12:00
Fix format string
This commit is contained in:
parent
62ef3ea493
commit
908a8ae58f
1 changed files with 2 additions and 2 deletions
|
@ -531,6 +531,6 @@ void VKRMemoryManager::appendOverlayHeapDebugInfo()
|
|||
uint32 heapSizeMB = (heapSize / 1024 / 1024);
|
||||
uint32 allocatedBytesMB = (allocatedBytes / 1024 / 1024);
|
||||
|
||||
ImGui::Text(fmt::format("{0:#08x} Size: {1}MB/{2}MB", itr.first, allocatedBytesMB, heapSizeMB).c_str());
|
||||
ImGui::Text("%s", fmt::format("{0:#08x} Size: {1}MB/{2}MB", itr.first, allocatedBytesMB, heapSizeMB).c_str());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue