summaryrefslogtreecommitdiff
path: root/soh/src
diff options
context:
space:
mode:
authorAdam Bird <Archez@users.noreply.github.com>2023-11-04 17:52:09 -0400
committerGitHub <noreply@github.com>2023-11-04 22:52:09 +0100
commit44ee6da0aaa640fad8a38bc160a97adeda6a0214 (patch)
tree11c8aa807c218ae5b26be787da49ff710667439a /soh/src
parent25f05e68b3896439684c4bf8493c52489edcdfa9 (diff)
fix quest assignment (#3343)
Diffstat (limited to 'soh/src')
-rw-r--r--soh/src/code/z_play.c2
-rw-r--r--soh/src/code/z_sram.c9
-rw-r--r--soh/src/overlays/gamestates/ovl_file_choose/z_file_choose.c6
-rw-r--r--soh/src/overlays/misc/ovl_kaleido_scope/z_kaleido_scope_PAL.c3
4 files changed, 9 insertions, 11 deletions
diff --git a/soh/src/code/z_play.c b/soh/src/code/z_play.c
index 112a71888..bf7016884 100644
--- a/soh/src/code/z_play.c
+++ b/soh/src/code/z_play.c
@@ -1202,7 +1202,7 @@ void Play_Update(PlayState* play) {
play->gameplayFrames++;
// Gameplay stat tracking
if (!gSaveContext.sohStats.gameComplete &&
- (!IS_BOSS_RUSH || (IS_BOSS_RUSH && !gSaveContext.isBossRushPaused))) {
+ (!IS_BOSS_RUSH || !gSaveContext.isBossRushPaused)) {
gSaveContext.sohStats.playTimer++;
gSaveContext.sohStats.sceneTimer++;
gSaveContext.sohStats.roomTimer++;
diff --git a/soh/src/code/z_sram.c b/soh/src/code/z_sram.c
index 057460b62..1ce20abc3 100644
--- a/soh/src/code/z_sram.c
+++ b/soh/src/code/z_sram.c
@@ -10,6 +10,8 @@
void Save_LoadFile(void);
+void BossRush_InitSave(void);
+
/**
* Initialize new save.
* This save has an empty inventory with 3 hearts and single magic.
@@ -33,6 +35,7 @@ void Sram_InitDebugSave(void) {
void Sram_InitBossRushSave(void) {
Save_InitFile(false);
+ BossRush_InitSave();
}
/**
@@ -221,11 +224,15 @@ void Sram_InitSave(FileChooseContext* fileChooseCtx) {
gSaveContext.n64ddFlag = fileChooseCtx->n64ddFlag;
- if (fileChooseCtx->questType[fileChooseCtx->buttonIndex] == QUEST_RANDOMIZER &&
+ u8 currentQuest = fileChooseCtx->questType[fileChooseCtx->buttonIndex];
+
+ if (currentQuest == QUEST_RANDOMIZER &&
strnlen(CVarGetString("gSpoilerLog", ""), 1) != 0) {
gSaveContext.questId = QUEST_RANDOMIZER;
Randomizer_InitSaveFile();
+ } else if (currentQuest == QUEST_MASTER) {
+ gSaveContext.questId = QUEST_MASTER;
}
Save_SaveFile();
diff --git a/soh/src/overlays/gamestates/ovl_file_choose/z_file_choose.c b/soh/src/overlays/gamestates/ovl_file_choose/z_file_choose.c
index 5de6df23d..9c83f9322 100644
--- a/soh/src/overlays/gamestates/ovl_file_choose/z_file_choose.c
+++ b/soh/src/overlays/gamestates/ovl_file_choose/z_file_choose.c
@@ -1293,8 +1293,6 @@ void FileChoose_UpdateQuestMenu(GameState* thisx) {
if (CHECK_BTN_ALL(input->press.button, BTN_A)) {
gSaveContext.questId = this->questType[this->buttonIndex];
- gSaveContext.isBossRushPaused = false;
-
if (this->questType[this->buttonIndex] == QUEST_BOSSRUSH) {
Audio_PlaySoundGeneral(NA_SE_SY_FSEL_DECIDE_L, &D_801333D4, 4, &D_801333E0, &D_801333E0, &D_801333E8);
this->prevConfigMode = this->configMode;
@@ -2819,10 +2817,6 @@ void FileChoose_ConfirmFile(GameState* thisx) {
if (this->confirmButtonIndex == FS_BTN_CONFIRM_YES) {
func_800AA000(300.0f, 180, 20, 100);
Audio_PlaySoundGeneral(NA_SE_SY_FSEL_DECIDE_L, &D_801333D4, 4, &D_801333E0, &D_801333E0, &D_801333E8);
- // Reset Boss Rush because it's only ever saved in memory.
- if (IS_BOSS_RUSH) {
- gSaveContext.questId = QUEST_NORMAL;
- }
this->selectMode = SM_FADE_OUT;
func_800F6964(0xF);
} else {
diff --git a/soh/src/overlays/misc/ovl_kaleido_scope/z_kaleido_scope_PAL.c b/soh/src/overlays/misc/ovl_kaleido_scope/z_kaleido_scope_PAL.c
index 87c4a99f5..55a5075a6 100644
--- a/soh/src/overlays/misc/ovl_kaleido_scope/z_kaleido_scope_PAL.c
+++ b/soh/src/overlays/misc/ovl_kaleido_scope/z_kaleido_scope_PAL.c
@@ -4307,9 +4307,6 @@ void KaleidoScope_Update(PlayState* play)
osSyncPrintf(VT_RST);
} else {
play->state.running = 0;
- if (IS_BOSS_RUSH) {
- gSaveContext.questId = QUEST_NORMAL;
- }
SET_NEXT_GAMESTATE(&play->state, Opening_Init, OpeningContext);
GameInteractor_ExecuteOnExitGame(gSaveContext.fileNum);
}