From 62d23146ff04c3107f537b7117e45830642d1246 Mon Sep 17 00:00:00 2001 From: MegaMech Date: Tue, 10 Sep 2024 17:53:53 -0600 Subject: [PATCH] Fix ImguiUI.cpp (#81) * Update ImguiUI.cpp * Update ImguiUI.cpp --- src/port/ui/ImguiUI.cpp | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/port/ui/ImguiUI.cpp b/src/port/ui/ImguiUI.cpp index 13beba93b..b11a4f268 100644 --- a/src/port/ui/ImguiUI.cpp +++ b/src/port/ui/ImguiUI.cpp @@ -470,11 +470,6 @@ void DrawEnhancementsMenu() { if (UIWidgets::BeginMenu("Gameplay")) { - UIWidgets::CVarCheckbox("No Level of Detail (LOD)", "gDisableLOD", - { .tooltip = "Disable Level of Detail (LOD) to avoid models using " - "lower poly versions at a distance" }); - - UIWidgets::WindowButton("Freecam", "gFreecam", GameUI::mFreecamWindow, { .tooltip = "Allows you to fly around the course" }); @@ -482,8 +477,6 @@ void DrawEnhancementsMenu() { "No Level of Detail (LOD)", "gDisableLod", { .tooltip = "Disable Level of Detail (LOD) to avoid models using lower poly versions at a distance" }); - UIWidgets::CVarCheckbox("Ignore Rendering Limits", "gIgnoreRenderDistance", - { .tooltip = "Renders game objects regardless of camera distance" }); UIWidgets::CVarCheckbox("Select any star from menu", "gCompletedGame", { .tooltip = "Unlocks extra mode and sets all gold cups." }); @@ -508,8 +501,6 @@ void DrawCheatsMenu() { "Min Height", "gMinHeight", -50.0f, 50.0f, 0.0f, { .tooltip = "When Disable Wall Collision are enable what is the minimal height you can get." }); ImGui::EndMenu(); - - ImGui::EndMenu(); } }