Move fixes to fix sub menu

This commit is contained in:
Baoulettes 2022-05-01 18:09:54 +02:00 committed by GitHub
parent 27e61c89bb
commit cb636fa62f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 2 deletions

View File

@ -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();
}