From d487e18ba07d06097aa99c65473ff5f882e6d0f1 Mon Sep 17 00:00:00 2001 From: Baoulettes Date: Fri, 20 May 2022 02:41:18 +0200 Subject: [PATCH] Add 0 in range for slider. --- libultraship/libultraship/SohImGuiImpl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libultraship/libultraship/SohImGuiImpl.cpp b/libultraship/libultraship/SohImGuiImpl.cpp index 3f6fa86e7..4f786b1e7 100644 --- a/libultraship/libultraship/SohImGuiImpl.cpp +++ b/libultraship/libultraship/SohImGuiImpl.cpp @@ -777,9 +777,9 @@ namespace SohImGui { EnhancementCheckbox("OoT Debug Mode", "gDebugEnabled"); Tooltip("Enables Debug Mode, allowing you to select maps with L + R + Z, noclip with L + D-pad Right,\nand open the debug menu with L on the pause screen"); EnhancementCheckbox("Fast File Select", "gSkipLogoTitle"); - Tooltip("Directly load the game to selected slot bellow\nUse slot number 4 to load directly in Zelda Map Select\n(Do not require debug menu but you will be unable to save there)\n(you can also load Zelda map select with Debug mod + slot 0)."); + Tooltip("Directly load the game to selected slot bellow\nUse slot number 4 to load directly in Zelda Map Select\n(Do not require debug menu but you will be unable to save there)\n(you can also load Zelda map select with Debug mod + slot 0).\nWith Slot : 0 you can go directly in File Select menu\nAttention, Loading an empty save will result in crash"); if (CVar_GetS32("gSkipLogoTitle",0)) { - EnhancementSliderInt("Save file to load: %d", "##SaveFileID", "gSaveFileID", 1, 4, ""); + EnhancementSliderInt("Loading %d", "##SaveFileID", "gSaveFileID", 0, 4, ""); } ImGui::Separator(); EnhancementCheckbox("Stats", "gStatsEnabled");