From 26ba7a1f63a4ab50cf725526e7622549b83f5dd6 Mon Sep 17 00:00:00 2001 From: Rangi42 Date: Sun, 22 Sep 2024 11:09:57 -0400 Subject: [PATCH] Label the unused daily flag --- engine/overworld/time.asm | 2 +- ram/wram.asm | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/engine/overworld/time.asm b/engine/overworld/time.asm index 2003910b34b..521b7d09b3f 100644 --- a/engine/overworld/time.asm +++ b/engine/overworld/time.asm @@ -109,7 +109,7 @@ CheckDailyResetTimer:: ld [hli], a ; wDailyFlags1 ld [hli], a ; wDailyFlags2 ld [hli], a ; wSwarmFlags - ld [hl], a ; wSwarmFlags + 1 + ld [hl], a ; wUnusedDailyFlag ld hl, wDailyRematchFlags rept 4 ld [hli], a diff --git a/ram/wram.asm b/ram/wram.asm index 7e34d268178..39257904d79 100644 --- a/ram/wram.asm +++ b/ram/wram.asm @@ -3212,7 +3212,8 @@ wDailyResetTimer:: dw wDailyFlags1:: db wDailyFlags2:: db wSwarmFlags:: db - ds 2 +wUnusedDailyFlag:: db + ds 1 wTimerEventStartDay:: db ds 3