From f7267be29a410ac88bf936753035d1cb6160ca21 Mon Sep 17 00:00:00 2001 From: Garrett Cox Date: Sun, 7 Aug 2022 02:10:54 -0500 Subject: [PATCH] Change shuffle cows to checkbox and remove extra line --- soh/soh/Enhancements/randomizer/randomizer.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/soh/soh/Enhancements/randomizer/randomizer.cpp b/soh/soh/Enhancements/randomizer/randomizer.cpp index cbe88a5c3..725c6e659 100644 --- a/soh/soh/Enhancements/randomizer/randomizer.cpp +++ b/soh/soh/Enhancements/randomizer/randomizer.cpp @@ -3965,9 +3965,8 @@ void DrawRandoEditor(bool& open) { PaddedSeparator(); // Shuffle Cows - ImGui::Text(Settings::ShuffleCows.GetName().c_str()); + SohImGui::EnhancementCheckbox(Settings::ShuffleCows.GetName().c_str(), "gRandomizeShuffleCows"); InsertHelpHoverText("Cows give a randomized item from the pool upon performing Epona's Song in front of them."); - SohImGui::EnhancementCombobox("gRandomizeShuffleCows", randoShuffleCows, 2, 0); PaddedSeparator(); if(CVar_GetS32("gRandomizeStartingKokiriSword", 0) == 0) { @@ -4042,7 +4041,6 @@ void DrawRandoEditor(bool& open) { "This setting does not effect the item earned from playing\n" "the Song of Storms and the frog song minigame." ); - PaddedSeparator(); } ImGui::PopItemWidth();