Change early return in CheckTrackerLoadGame to check specifically for Boss Rush instead of Not Rando. (#5634)

This commit is contained in:
Malkierian
2025-06-29 19:12:04 -07:00
committed by GitHub
parent a9b857469e
commit 32683e2a74

View File

@@ -495,7 +495,7 @@ void SetShopSeen(uint32_t sceneNum, bool prices) {
}
void CheckTrackerLoadGame(int32_t fileNum) {
if (!IS_RANDO) {
if (IS_BOSS_RUSH) {
return;
}
LoadSettings();