summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalkierian <malkierian@gmail.com>2025-10-25 19:52:22 -0700
committerGitHub <noreply@github.com>2025-10-25 19:52:22 -0700
commit74312442d55afcb2574b26ebd956c685b279c163 (patch)
tree81e7362cc67e5cd9f52c4fbed9092575270b93b3
parentad2807ce322412667704085ffc895de92b33aadb (diff)
Fix wrong CVar on Hookshot Identifier. (#5883)
-rw-r--r--soh/soh/Enhancements/randomizer/randomizer_item_tracker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/soh/soh/Enhancements/randomizer/randomizer_item_tracker.cpp b/soh/soh/Enhancements/randomizer/randomizer_item_tracker.cpp
index 0935ce46c..cd32cc4b1 100644
--- a/soh/soh/Enhancements/randomizer/randomizer_item_tracker.cpp
+++ b/soh/soh/Enhancements/randomizer/randomizer_item_tracker.cpp
@@ -2113,7 +2113,7 @@ void RegisterItemTrackerWidgets() {
SohGui::mSohMenu->AddSearchWidget({ personalNotesWiget, "Randomizer", "Item Tracker", "General Settings" });
hookshotIdentWidget = { .name = "Show Hookshot Identifiers", .type = WidgetType::WIDGET_CVAR_CHECKBOX };
- hookshotIdentWidget.CVar(CVAR_SETTING("FreeLook.Enabled"))
+ hookshotIdentWidget.CVar(CVAR_TRACKER_ITEM("HookshotIdentifier"))
.Options(CheckboxOptions()
.Color(THEME_COLOR)
.Tooltip("Shows an 'H' or an 'L' to more easily distinguish between Hookshot and Longshot."));