From dc6589cef588e16cb383eedc0dec1d7ca452800f Mon Sep 17 00:00:00 2001 From: Tyler Wilding Date: Fri, 5 Aug 2022 12:12:55 -0400 Subject: [PATCH] game/imgui: remove V-Sync checkbox as it can't be interacted with (#1726) --- game/graphics/opengl_renderer/debug_gui.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/game/graphics/opengl_renderer/debug_gui.cpp b/game/graphics/opengl_renderer/debug_gui.cpp index 8cf471444..170ba86ad 100644 --- a/game/graphics/opengl_renderer/debug_gui.cpp +++ b/game/graphics/opengl_renderer/debug_gui.cpp @@ -117,8 +117,6 @@ void OpenGlDebugGui::draw(const DmaStats& dma_stats) { } if (ImGui::BeginMenu("Frame Rate")) { - ImGui::Checkbox("Enable V-Sync", &Gfx::g_global_settings.vsync); - ImGui::Separator(); ImGui::Checkbox("Framelimiter", &Gfx::g_global_settings.framelimiter); ImGui::InputFloat("Target FPS", &target_fps_input); if (ImGui::MenuItem("Apply")) {