From 63a4a10dfc0e353cba3a04abedf05480824ed608 Mon Sep 17 00:00:00 2001 From: Stepland <10530295-Buggyroom@users.noreply.gitlab.com> Date: Tue, 25 Jul 2023 00:06:32 +0200 Subject: [PATCH] Remove debug FPS window --- src/main.cpp | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 65869b5..93052eb 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -812,12 +812,6 @@ int main() { } } ImGui::EndMainMenuBar(); - - if (ImGui::Begin("Debug")) { - ImGui::TextUnformatted(fmt::format("frame time : {}ms", delta.asMilliseconds()).c_str()); - ImGui::TextUnformatted(fmt::format("{:.0f} fps", 1.0f / delta.asSeconds()).c_str()); - } - ImGui::End(); ImGui::SFML::Render(window); window.display(); markers.update();