From 50ce8d610b61ae389d028d6362d62054abec658f Mon Sep 17 00:00:00 2001 From: Stanislaw Halik Date: Thu, 20 Oct 2022 15:45:54 +0200 Subject: gui: call ImGui::EndFrame() --- main/imgui.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/main/imgui.cpp b/main/imgui.cpp index 0a70149b..7e7f275e 100644 --- a/main/imgui.cpp +++ b/main/imgui.cpp @@ -58,6 +58,7 @@ void app::draw_ui() draw_editor_pane(_editor.floor(), main_menu_height); draw_fps(); draw_cursor_coord(); + ImGui::EndFrame(); } void app::draw_editor_pane(tile_type& type, float main_menu_height) -- cgit v1.2.3