diff options
| author | briaguya <70942617+briaguya-ai@users.noreply.github.com> | 2022-11-28 16:41:33 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-28 22:41:33 +0100 |
| commit | 0424c5aaf3f3f55d390d1045bd001bb1e8fe98b6 (patch) | |
| tree | 207a6119448053f4dfb798a876c3534beaaf3adc /soh/src/code | |
| parent | 97e612b921ad0f625ed52d99bbc35b154a0c60b4 (diff) | |
fix: rando door of time enum usage (#2032)
Diffstat (limited to 'soh/src/code')
| -rw-r--r-- | soh/src/code/z_sram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/soh/src/code/z_sram.c b/soh/src/code/z_sram.c index 9337e7ce8..797a96177 100644 --- a/soh/src/code/z_sram.c +++ b/soh/src/code/z_sram.c @@ -399,7 +399,7 @@ void Sram_InitSave(FileChooseContext* fileChooseCtx) { int doorOfTime = Randomizer_GetSettingValue(RSK_DOOR_OF_TIME); switch (doorOfTime) { - case 0: // open + case RO_DOOROFTIME_OPEN: gSaveContext.eventChkInf[4] |= 0x800; break; } |
