diff options
| author | Malkierian <malkierian@gmail.com> | 2024-04-21 08:25:06 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-04-21 10:25:06 -0500 |
| commit | 33aef87907cb68479f754e63e37b532f18170583 (patch) | |
| tree | 9a11f06798e6bcb765da3aefd13d3a1548fcd16c /soh/src/code/z_common_data.c | |
| parent | e2622af004b17df58ab8a8d1472ab78ae649f341 (diff) | |
CVar Macro Cleanup (#4062)
* Standardized CVar macros to have `CVAR_` at the front instead of the end.
Removed excluded and replaced sequence macros.
* Missed a few developer CVars outside of `SohMenuBar.cpp`
* 1 more.
Diffstat (limited to 'soh/src/code/z_common_data.c')
| -rw-r--r-- | soh/src/code/z_common_data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/soh/src/code/z_common_data.c b/soh/src/code/z_common_data.c index 491689880..31a25841d 100644 --- a/soh/src/code/z_common_data.c +++ b/soh/src/code/z_common_data.c @@ -8,7 +8,7 @@ void SaveContext_Init(void) { gSaveContext.seqId = (u8)NA_BGM_DISABLED; gSaveContext.natureAmbienceId = NATURE_ID_DISABLED; gSaveContext.forcedSeqId = NA_BGM_GENERAL_SFX; - gSaveContext.nextCutsceneIndex = CVarGetInteger(CHEAT_CVAR("BetaQuestWorld"), 0xFFEF); + gSaveContext.nextCutsceneIndex = CVarGetInteger(CVAR_CHEAT("BetaQuestWorld"), 0xFFEF); gSaveContext.cutsceneTrigger = 0; gSaveContext.chamberCutsceneNum = 0; gSaveContext.nextDayTime = 0xFFFF; |
