Fix compile error in ImGuiHeapOverlay due to invalid static keyword

This commit is contained in:
Max Roncace
2026-03-31 18:46:39 -04:00
parent f225957f3e
commit e0038041ff
+1 -1
View File
@@ -177,7 +177,7 @@ namespace dusk {
return result;
}
static void ShowHeapDetailed(JKRHeap* heap, OpenHeapData& data, bool& open) {
void ShowHeapDetailed(JKRHeap* heap, OpenHeapData& data, bool& open) {
char title[128];
const char* name = data.Safe ? heap->getName() : "INVALID";
snprintf(title, sizeof(title), "Heap %s##%p", heap->getName(), static_cast<const void*>(heap));