From 7627b0567b9d216896ef909a4db10cf78149c160 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20Dub=C3=A9?= Date: Sat, 10 Jan 2026 16:19:19 +0000 Subject: [PATCH] Bring back Big Poe Count option, lost in menu refactor (#6126) --- soh/soh/CrashHandlerExt.cpp | 2 +- soh/soh/{CrashHandlerExp.h => CrashHandlerExt.h} | 0 soh/soh/Enhancements/randomizer/settings.cpp | 2 ++ soh/src/code/main.c | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) rename soh/soh/{CrashHandlerExp.h => CrashHandlerExt.h} (100%) diff --git a/soh/soh/CrashHandlerExt.cpp b/soh/soh/CrashHandlerExt.cpp index 3ca821460..ded4bfc9e 100644 --- a/soh/soh/CrashHandlerExt.cpp +++ b/soh/soh/CrashHandlerExt.cpp @@ -1,4 +1,4 @@ -#include "CrashHandlerExp.h" +#include "CrashHandlerExt.h" #include "variables.h" #include "z64.h" #include "z64actor.h" diff --git a/soh/soh/CrashHandlerExp.h b/soh/soh/CrashHandlerExt.h similarity index 100% rename from soh/soh/CrashHandlerExp.h rename to soh/soh/CrashHandlerExt.h diff --git a/soh/soh/Enhancements/randomizer/settings.cpp b/soh/soh/Enhancements/randomizer/settings.cpp index 11fd5cf38..204c63d0e 100644 --- a/soh/soh/Enhancements/randomizer/settings.cpp +++ b/soh/soh/Enhancements/randomizer/settings.cpp @@ -2157,6 +2157,7 @@ void Settings::CreateOptions() { &mOptions[RSK_LOGIC_RULES], &mOptions[RSK_ALL_LOCATIONS_REACHABLE], &mOptions[RSK_SKULLS_SUNS_SONG], + &mOptions[RSK_BIG_POE_COUNT], }); // TODO: Exclude Locations Menus mTricksByArea.clear(); @@ -2177,6 +2178,7 @@ void Settings::CreateOptions() { &mOptions[RSK_ALL_LOCATIONS_REACHABLE], &mOptions[RSK_STARTING_AGE], &mOptions[RSK_SKULLS_SUNS_SONG], + &mOptions[RSK_BIG_POE_COUNT], &mOptions[RSK_BLUE_FIRE_ARROWS], &mOptions[RSK_SUNLIGHT_ARROWS], &mOptions[RSK_FULL_WALLETS], diff --git a/soh/src/code/main.c b/soh/src/code/main.c index 558b30d2f..c9d87c66c 100644 --- a/soh/src/code/main.c +++ b/soh/src/code/main.c @@ -10,7 +10,7 @@ #include "soh/OTRGlobals.h" #include -#include "soh/CrashHandlerExp.h" +#include "soh/CrashHandlerExt.h" s32 gScreenWidth = SCREEN_WIDTH; s32 gScreenHeight = SCREEN_HEIGHT;