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;