diff options
Diffstat (limited to 'src/code')
| -rw-r--r-- | src/code/z_actor.c | 2 | ||||
| -rw-r--r-- | src/code/z_demo.c | 2 | ||||
| -rw-r--r-- | src/code/z_scene_table.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/src/code/z_actor.c b/src/code/z_actor.c index 9a4066393..973f903c2 100644 --- a/src/code/z_actor.c +++ b/src/code/z_actor.c @@ -4861,7 +4861,7 @@ u32 func_80035BFC(GlobalContext* globalCtx, s16 arg1) { } } else { if (!Flags_GetEventChkInf(0x18)) { - if (gSaveContext.nightFlag) { + if (gSaveContext.nightFlag != 0) { retTextId = 0x204E; } else if (Flags_GetInfTable(0x9A)) { retTextId = 0x2031; diff --git a/src/code/z_demo.c b/src/code/z_demo.c index 2ef4cbe52..4c6bfe529 100644 --- a/src/code/z_demo.c +++ b/src/code/z_demo.c @@ -364,7 +364,7 @@ void func_80064824(GlobalContext* globalCtx, CutsceneContext* csCtx, CsCmdBase* gSaveContext.unk_1422 = 1; break; case 34: - if (!gSaveContext.nightFlag) { + if (gSaveContext.nightFlag == 0) { gSaveContext.dayTime -= D_8011FB40; } else { gSaveContext.dayTime -= D_8011FB40 * 2; diff --git a/src/code/z_scene_table.c b/src/code/z_scene_table.c index 5d10ded73..107611d22 100644 --- a/src/code/z_scene_table.c +++ b/src/code/z_scene_table.c @@ -926,7 +926,7 @@ Gfx sDefaultDisplayList[] = { void func_800994A0(GlobalContext* globalCtx) { s16 computedEntranceIndex; - if (gSaveContext.nightFlag) { + if (gSaveContext.nightFlag != 0) { if (LINK_IS_CHILD) { computedEntranceIndex = globalCtx->nextEntranceIndex + 1; } else { |
