From 7d9858fec42d0cef1f0349c3cef250003c5ed66d Mon Sep 17 00:00:00 2001 From: Sylvie <35663410+Rangi42@users.noreply.github.com> Date: Sun, 29 Sep 2024 11:24:35 -0400 Subject: Identify more bit flags (#119) * Identify more bit flags * Bit serves dual use in debug mode --- engine/debug/debug_menu.asm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engine/debug') diff --git a/engine/debug/debug_menu.asm b/engine/debug/debug_menu.asm index ae4a328b..b2efb940 100644 --- a/engine/debug/debug_menu.asm +++ b/engine/debug/debug_menu.asm @@ -1558,7 +1558,7 @@ Func_ff295: call Func_ff2f3 pop de ld a, d - set 7, a + set BIT_HAS_CHANGED_BOXES, a ld [wCurrentBoxNum], a push de call Func_ff2d1 @@ -1566,7 +1566,7 @@ Func_ff295: call Func_ff2f3 ld a, [wLetterPrintingDelayFlags] push af - ld a, 1 + ld a, 1 << BIT_FAST_TEXT_DELAY ld [wLetterPrintingDelayFlags], a callfar SaveSAVtoSRAM pop af -- cgit v1.3.1-sl0p