From 938ecef13166417a51d5810220fcd347a8e2ce88 Mon Sep 17 00:00:00 2001 From: Sarge-117 Date: Sat, 3 Sep 2022 14:27:27 -0700 Subject: [PATCH] Tooltip wording + line break --- soh/soh/GameMenuBar.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/soh/soh/GameMenuBar.cpp b/soh/soh/GameMenuBar.cpp index 80fe4e186..197c86bc4 100644 --- a/soh/soh/GameMenuBar.cpp +++ b/soh/soh/GameMenuBar.cpp @@ -896,7 +896,7 @@ namespace GameMenuBar { "This setting is forcefully enabled because a savefile\nwith \"Blue Fire Arrows\" is loaded."; UIWidgets::PaddedEnhancementCheckbox("Blue Fire Arrows", "gBlueFireArrows", true, false, forceEnableBlueFireArrows, forceEnableBlueFireArrowsText, UIWidgets::CheckboxGraphics::Checkmark); - UIWidgets::Tooltip("Allows Ice Arrows to melt red ice. May require a room reload on first use."); + UIWidgets::Tooltip("Allows Ice Arrows to melt red ice.\nMay require a room reload if toggled during gameplay."); // Sunlight Arrows bool forceEnableSunLightArrows = gSaveContext.n64ddFlag && @@ -905,7 +905,7 @@ namespace GameMenuBar { "This setting is forcefully enabled because a savefile\nwith \"Sunlight Arrows\" is loaded."; UIWidgets::PaddedEnhancementCheckbox("Sunlight Arrows", "gSunlightArrows", true, false, forceEnableSunLightArrows, forceEnableSunLightArrowsText, UIWidgets::CheckboxGraphics::Checkmark); - UIWidgets::Tooltip("Allows Light Arrows to activate sun switches. May require a room reload on first use."); + UIWidgets::Tooltip("Allows Light Arrows to activate sun switches.\nMay require a room reload if toggled during gameplay."); ImGui::EndMenu(); }