Fix minor thing in sram

This commit is contained in:
Garrett Cox 2022-08-25 10:34:39 -05:00
parent f7bd48aaca
commit 5e9d1d61f1

View File

@ -704,7 +704,7 @@ void Sram_InitSave(FileChooseContext* fileChooseCtx) {
gSaveContext.n64ddFlag = 1;
// Sets all rando flags to false
for (s32 i = 0; i < RAND_INF_MAX; i++) {
for (s32 i = 0; i < ARRAY_COUNT(gSaveContext.randomizerInf); i++) {
gSaveContext.randomizerInf[i] = 0;
}