From d025ca0d901d2cc1f276bf87d804f9c7947689fe Mon Sep 17 00:00:00 2001 From: PurpleHato Date: Thu, 4 May 2023 06:31:52 +0200 Subject: [PATCH] TWEAK: Rupee dash duplication (#2815) * TWEAK: Rupee dash duplication Rupee dash was duplicated while being moved over the EXTRA MODES, so this fixes the duplication and put it only there * Update soh/soh/GameMenuBar.cpp --------- Co-authored-by: briaguya <70942617+briaguya-ai@users.noreply.github.com> --- soh/soh/GameMenuBar.cpp | 8 -------- 1 file changed, 8 deletions(-) diff --git a/soh/soh/GameMenuBar.cpp b/soh/soh/GameMenuBar.cpp index b7a8f6619..01dfd388e 100644 --- a/soh/soh/GameMenuBar.cpp +++ b/soh/soh/GameMenuBar.cpp @@ -717,14 +717,6 @@ namespace GameMenuBar { ImGui::EndMenu(); } - UIWidgets::Spacer(0); - - UIWidgets::PaddedEnhancementCheckbox("Rupee Dash Mode", "gRupeeDash", true, false); - UIWidgets::Tooltip("Rupees reduced over time, Link suffers damage when the count hits 0."); - UIWidgets::PaddedEnhancementSliderInt("Rupee Dash Interval: %d", "##DashInterval", "gDashInterval", 3, 5, "", 5, true, true, false, - !CVarGetInteger("gRupeeDash", 0), "This option is disabled because \"Rupee Dash Mode\" is turned off"); - UIWidgets::Tooltip("Interval between Rupee reduction in Rupee Dash Mode"); - ImGui::EndMenu(); }