From f33af0fc9a269ce35cd6d4fae5a3e73ab0f2047f Mon Sep 17 00:00:00 2001 From: Sonic Dreamcaster Date: Thu, 17 Oct 2024 13:32:45 -0300 Subject: [PATCH] move Speed Control to debug menu --- src/port/ui/ImguiUI.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/port/ui/ImguiUI.cpp b/src/port/ui/ImguiUI.cpp index bc3a6b65..279d67e8 100644 --- a/src/port/ui/ImguiUI.cpp +++ b/src/port/ui/ImguiUI.cpp @@ -417,10 +417,6 @@ void DrawEnhancementsMenu() { .tooltip = "Disable Level of Detail (LOD) to avoid models using lower poly versions at a distance" }); - UIWidgets::CVarCheckbox("Speed Control", "gDebugSpeedControl", { - .tooltip = "Control the Arwing speed" - } - ); ImGui::EndMenu(); } @@ -484,6 +480,10 @@ void DrawDebugMenu() { UIWidgets::CVarCheckbox("Disable Collision", "gDebugNoCollision", { .tooltip = "Disable vehicle collision" }); + + UIWidgets::CVarCheckbox("Speed Control", "gDebugSpeedControl", { + .tooltip = "Control the Arwing speed" + }); UIWidgets::Spacer(0);