chiptune_player: fix box drawing

buffer overlow in filename spacing code turned the first char
of the hlin_double routine to be a ldy instruction, calling the
left bounds to go to zero.  A pain to track down.
This commit is contained in:
Vince Weaver 2018-02-21 22:50:55 -05:00
parent 3829a921bb
commit daf51b5474
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ filename_pad_spaces:
lda #$A0 ; filename needs ' ' padded
sta (OUTL),y
iny
cpy #31 ; fill 30 bytes
cpy #30 ; fill 30 bytes
bne filename_pad_spaces