Skip to content

Commit

Permalink
Internals: renamed GetIOEx() to GetIO(). Added GetPlatformIO() explic…
Browse files Browse the repository at this point in the history
…it context variant. - OOPS
  • Loading branch information
ocornut committed Jan 31, 2025
1 parent e2a99b5 commit e4db4e4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imgui.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit e4db4e4

Please sign in to comment.