From 70c18ac169553f8c6d14544cdc16e755df06353e Mon Sep 17 00:00:00 2001 From: Joshua Goins Date: Tue, 8 Feb 2022 08:21:35 -0500 Subject: [PATCH] Remove ImGui metrics window from showing on startup --- engine/core/src/imgui_backend.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/engine/core/src/imgui_backend.cpp b/engine/core/src/imgui_backend.cpp index f83c312..ee55afd 100644 --- a/engine/core/src/imgui_backend.cpp +++ b/engine/core/src/imgui_backend.cpp @@ -262,8 +262,6 @@ void imgui_backend::begin_frame(const float delta_time) { dialog_function(save_dialog_data); ImGui::EndPopup(); } - - ImGui::ShowMetricsWindow(); } void imgui_backend::render() {