diff options
| author | Sylvie <35663410+Rangi42@users.noreply.github.com> | 2024-09-29 11:24:35 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-29 10:24:35 -0500 |
| commit | 7d9858fec42d0cef1f0349c3cef250003c5ed66d (patch) | |
| tree | 7cf362d6e8949e098159cb7778bbcf40301ad4de /engine/debug | |
| parent | Merge branch 'master' of https://github.com/pret/pokered (diff) | |
| download | pokeyellow-7d9858fec42d0cef1f0349c3cef250003c5ed66d.tar.gz pokeyellow-7d9858fec42d0cef1f0349c3cef250003c5ed66d.tar.xz pokeyellow-7d9858fec42d0cef1f0349c3cef250003c5ed66d.zip | |
Identify more bit flags (#119)
* Identify more bit flags
* Bit serves dual use in debug mode
Diffstat (limited to 'engine/debug')
| -rw-r--r-- | engine/debug/debug_menu.asm | 4 |
1 files changed, 2 insertions, 2 deletions
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 |
