fix off-by-1 bug [thanks Frank M.]

This commit is contained in:
4am 2023-11-18 00:24:15 -05:00
parent 60b1f68c9d
commit e1f3a74344
1 changed files with 2 additions and 2 deletions

View File

@ -7,9 +7,9 @@ PrintBranding
; out: Y = 0 (important! some callers rely on this!)
ldy #11
- lda TOTAL-1, y
sta $04B5-1, y
sta $04B6-1, y
lda REPLAY-1, y
sta $0535-1, y
sta $0536-1, y
dey
bne -
rts