mirror of
https://github.com/cc65/cc65.git
synced 2025-02-06 12:31:12 +00:00
Clear bottom line when scrolling.
Fix provided by Jeff Tranter.
This commit is contained in:
parent
7a975fa182
commit
73ae95bd1c
@ -58,6 +58,12 @@ scroll: lda SCRNBASE+$00A5,x
|
|||||||
sta SCRNBASE+$0285,x
|
sta SCRNBASE+$0285,x
|
||||||
inx
|
inx
|
||||||
bne scroll
|
bne scroll
|
||||||
|
bottom:
|
||||||
|
lda #' ' ; Clear bottom line of screen
|
||||||
|
sta SCRNBASE+$0385,x
|
||||||
|
inx
|
||||||
|
cpx #SCR_LINELEN+1
|
||||||
|
bne bottom
|
||||||
|
|
||||||
plot: ldy CURS_Y
|
plot: ldy CURS_Y
|
||||||
lda ScrLo,y
|
lda ScrLo,y
|
||||||
|
Loading…
x
Reference in New Issue
Block a user