1
0
mirror of https://github.com/cc65/cc65.git synced 2026-04-20 17:20:49 +00:00

Fix gotoy changecolor

This commit is contained in:
jede
2019-07-06 10:19:45 +02:00
committed by greg-king5
parent 7f9e73a1ce
commit 3d5811d8f5
+6
View File
@@ -10,5 +10,11 @@
.proc _gotoy
sta SCRY
jsr _update_adscr
; We change the current line, it means that we need to put color attributes again.
; That is not the case with _gotox because, it's on the same line attribute are already set
lda #$01
sta CHARCOLOR_CHANGE
sta BGCOLOR_CHANGE
rts
.endproc