cycle 'in' not 'out'

This commit is contained in:
Brooke Vibber 2024-12-30 11:35:45 -08:00
parent 71d8d93abc
commit 14125a398a

View file

@ -234,12 +234,12 @@ color_map:
palette_start: palette_start:
.byte $04
.byte $08
.byte $0e .byte $0e
.byte $08
.byte $04
palette_repeat: palette_repeat:
.byte $03 .byte $0e
.byte $09 .byte $08
palette_entries = 3 palette_entries = 3
@ -1206,7 +1206,7 @@ skip_luma:
ldy palette_offset ldy palette_offset
lda palette_chroma,x lda palette_chroma,x
ora palette_start,y ora palette_start,y
sta COLOR0 sta COLOR2
;inx ;inx
iny iny
@ -1218,7 +1218,7 @@ skip_luma:
iny iny
lda palette_chroma,x lda palette_chroma,x
ora palette_start,y ora palette_start,y
sta COLOR2 sta COLOR0
rts rts
.endproc .endproc