fix bug where spaces in puzzles might not ever become 0s

This commit is contained in:
4am 2020-05-06 13:16:39 -04:00
parent 7af19aca28
commit 8b2857c085

View File

@ -58,7 +58,10 @@ AddLineToPuzzle
tax
ldy #0
- lda ($FE), y
sta puzzle_data0, x
cmp #$20
bne +
lda #0
+ sta puzzle_data0, x
inx
iny
cpy puzzle_logical_width