From 4d0e928c6f6575638df7394d0421ec3b958ed2fa Mon Sep 17 00:00:00 2001 From: Sylvie <35663410+Rangi42@users.noreply.github.com> Date: Thu, 26 Sep 2024 00:17:12 -0400 Subject: [PATCH] Label the unused daily flag (#1143) --- 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 2003910b3..521b7d09b 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 7e34d2681..39257904d 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