mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 06:54:14 -04:00
1af942ae12
* import audio scene seq docs * cleanup * fix scene cmd * small fixes * more PR suggestions * missed comment * rename spot to resume * cleanup comments * SEQ_IO_VAL_NONE * Empty-Commit * another PR suggestion
25 lines
781 B
C
25 lines
781 B
C
#include "global.h"
|
|
|
|
SaveContext gSaveContext;
|
|
|
|
void SaveContext_Init(void) {
|
|
bzero(&gSaveContext, sizeof(SaveContext));
|
|
|
|
gSaveContext.save.playerForm = 0;
|
|
gSaveContext.seqId = (u8)NA_BGM_DISABLED;
|
|
gSaveContext.ambienceId = AMBIENCE_ID_DISABLED;
|
|
gSaveContext.unk_3F46 = NA_BGM_GENERAL_SFX;
|
|
gSaveContext.nextCutsceneIndex = 0xFFEF;
|
|
gSaveContext.cutsceneTrigger = 0;
|
|
gSaveContext.unk_3F4D = 0;
|
|
gSaveContext.nextDayTime = 0xFFFF;
|
|
gSaveContext.skyboxTime = 0;
|
|
gSaveContext.dogIsLost = true;
|
|
gSaveContext.nextTransitionType = TRANS_NEXT_TYPE_DEFAULT;
|
|
gSaveContext.prevHudVisibility = HUD_VISIBILITY_ALL;
|
|
|
|
gSaveContext.options.language = 1;
|
|
gSaveContext.options.audioSetting = 0;
|
|
gSaveContext.options.zTargetSetting = 0;
|
|
}
|