From e4db4e423d78bce7e6c050f1f0710b3b635a9871 Mon Sep 17 00:00:00 2001 From: ocornut Date: Fri, 31 Jan 2025 19:50:18 +0100 Subject: [PATCH] Internals: renamed GetIOEx() to GetIO(). Added GetPlatformIO() explicit context variant. - OOPS --- imgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui.cpp b/imgui.cpp index 7d4da45501d0..88f5088515af 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -4829,7 +4829,7 @@ ImGuiPlatformIO& ImGui::GetPlatformIO() // This variant exists to facilitate backends experimenting with multi-threaded parallel context. (#8069, #6293, #5856) ImGuiPlatformIO& ImGui::GetPlatformIO(ImGuiContext* ctx) { - IM_ASSERT(ctx != NULL; + IM_ASSERT(ctx != NULL); return ctx->PlatformIO; }