mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-12-27 02:31:00 +00:00
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:
parent
3829a921bb
commit
daf51b5474
@ -73,7 +73,7 @@ filename_pad_spaces:
|
|||||||
lda #$A0 ; filename needs ' ' padded
|
lda #$A0 ; filename needs ' ' padded
|
||||||
sta (OUTL),y
|
sta (OUTL),y
|
||||||
iny
|
iny
|
||||||
cpy #31 ; fill 30 bytes
|
cpy #30 ; fill 30 bytes
|
||||||
bne filename_pad_spaces
|
bne filename_pad_spaces
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user