mirror of
https://github.com/a2-4am/million-perfect-letters.git
synced 2024-12-27 12:34:11 +00:00
fix bug where spaces in puzzles might not ever become 0s
This commit is contained in:
parent
7af19aca28
commit
8b2857c085
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user