From cb636fa62f88dbcc9c63d2444ba839a447402b07 Mon Sep 17 00:00:00 2001 From: Baoulettes Date: Sun, 1 May 2022 18:09:54 +0200 Subject: [PATCH] Move fixes to fix sub menu --- libultraship/libultraship/SohImGuiImpl.cpp | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/libultraship/libultraship/SohImGuiImpl.cpp b/libultraship/libultraship/SohImGuiImpl.cpp index 8df5e2a1a..abbf0d399 100644 --- a/libultraship/libultraship/SohImGuiImpl.cpp +++ b/libultraship/libultraship/SohImGuiImpl.cpp @@ -559,9 +559,13 @@ namespace SohImGui { EnhancementCheckbox("Disable LOD", "gDisableLOD"); EnhancementCheckbox("Enable 3D Dropped items", "gNewDrops"); EnhancementCheckbox("Dynamic Wallet Icon", "gDynamicWalletIcon"); - //EnhancementCheckbox("Fix Dungeon entrances", "gFixDungeonMinimapIcon"); //This is just to show that we can toggle it on/off with that cvar EnhancementCheckbox("Always show dungeon entrances", "gAlwaysShowDungeonMinimapIcon"); - + + if (ImGui::BeginMenu("Fixes")) { + EnhancementCheckbox("Fix L&R Pause menu", "gUniformLR"); + EnhancementCheckbox("Fix Dungeon entrances", "gFixDungeonMinimapIcon"); + ImGui::EndMenu(); + } ImGui::EndMenu(); }