summaryrefslogtreecommitdiff
path: root/src/code/z_common_data.c
diff options
context:
space:
mode:
authorengineer124 <47598039+engineer124@users.noreply.github.com>2021-12-04 01:49:32 +1100
committerGitHub <noreply@github.com>2021-12-03 09:49:32 -0500
commit5e9d24fca4aaae3345d0e139717356b6129de0bb (patch)
treeb0c1f952de88d382661ebf7b2e3f57e537e635a6 /src/code/z_common_data.c
parent21a92ab95f2b57b81e90fc0e376527f4e45b46f3 (diff)
Clean Up Sequence Structs in Scene/Save/z64 (#1051)
* Clean up sound scene struct * Follow-up cleaning * cleanup * Document forcedSeqId * Update include/z64save.h Co-authored-by: fig02 <fig02srl@gmail.com> * Update include/z64.h Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com> Co-authored-by: fig02 <fig02srl@gmail.com> Co-authored-by: Roman971 <32455037+Roman971@users.noreply.github.com>
Diffstat (limited to 'src/code/z_common_data.c')
-rw-r--r--src/code/z_common_data.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/code/z_common_data.c b/src/code/z_common_data.c
index f63c9b4af..fbe01f7c7 100644
--- a/src/code/z_common_data.c
+++ b/src/code/z_common_data.c
@@ -8,9 +8,9 @@ void SaveContext_Init(void) {
bzero(&gSaveContext, sizeof(gSaveContext));
D_8015FA88 = 0;
D_8015FA8C = 0;
- gSaveContext.seqIndex = (u8)NA_BGM_DISABLED;
- gSaveContext.nightSeqIndex = 0xFF;
- gSaveContext.unk_140E = NA_BGM_GENERAL_SFX;
+ gSaveContext.seqId = (u8)NA_BGM_DISABLED;
+ gSaveContext.natureAmbienceId = 0xFF;
+ gSaveContext.forcedSeqId = NA_BGM_GENERAL_SFX;
gSaveContext.nextCutsceneIndex = 0xFFEF;
gSaveContext.cutsceneTrigger = 0;
gSaveContext.chamberCutsceneNum = 0;