From e5d1e79cda67e19699f81dea1af4e684015dbe7d Mon Sep 17 00:00:00 2001 From: Robert Beckebans Date: Tue, 29 Oct 2019 17:45:18 +0100 Subject: [PATCH] Added missing ImGui::End() --- neo/imgui/BFGimguiImpl.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/neo/imgui/BFGimguiImpl.cpp b/neo/imgui/BFGimguiImpl.cpp index 13c11bb6..3add323f 100644 --- a/neo/imgui/BFGimguiImpl.cpp +++ b/neo/imgui/BFGimguiImpl.cpp @@ -401,6 +401,8 @@ void Render() ImGui::ShowDemoWindow(); } + ImGui::End(); + ImGui::Render(); g_haveNewFrame = false; }