Fix cvline bug

This commit is contained in:
jede 2021-03-07 23:00:15 +01:00
parent 48badc0816
commit df64fd859c
1 changed files with 5 additions and 1 deletions

View File

@ -28,7 +28,11 @@ _cvline:
@L1:
lda #'|'
ora rvs
jsr display_conio
ldy SCRX
sta (ADSCR),y
; compute next line
inc SCRY
jsr update_adscr
@L2: dex
bne @L1
@L9: rts