From 1be460402752435b5ca5685ba1c62566c3c9e49f Mon Sep 17 00:00:00 2001 From: Jim Tilander Date: Sat, 31 Jan 2015 20:35:42 -0800 Subject: [PATCH] Fixed pointer dereferencing error from merge --- imgui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imgui.cpp b/imgui.cpp index 4f49d1cd..01d81ec4 100644 --- a/imgui.cpp +++ b/imgui.cpp @@ -1104,7 +1104,7 @@ static ImGuiWindow* GetCurrentWindow() static void SetActiveId(ImGuiID id) { - GImGui.ActiveId = id; + GImGui->ActiveId = id; } static void RegisterAliveId(const ImGuiID& id)