Skip to content

Commit

Permalink
ListEventCheck Fix
Browse files Browse the repository at this point in the history
Fix error in ListEventCheck
The value that is supposed to be check for zero is the event bit value loaded in b, not the event byte value loaded in a.
  • Loading branch information
Engezerstorung committed Dec 8, 2024
1 parent d80dcf3 commit 48054f8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion color/colorplus/loadextragfx.asm
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ ListEventCheck:
add hl, de
ld a, [hl] ; byte containing the event bit
pop hl
and a
inc b
dec b
jr z, .bitIs0
.rrcaLoop
rrca
Expand Down

0 comments on commit 48054f8

Please sign in to comment.