Fixed pointer dereferencing error from merge

This commit is contained in:
Jim Tilander 2015-01-31 20:35:42 -08:00
parent e9ff2f3d24
commit 1be4604027

View File

@ -1104,7 +1104,7 @@ static ImGuiWindow* GetCurrentWindow()
static void SetActiveId(ImGuiID id)
{
GImGui.ActiveId = id;
GImGui->ActiveId = id;
}
static void RegisterAliveId(const ImGuiID& id)