We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c287378 commit 062f5aaCopy full SHA for 062f5aa
src/playstate/util.asm
@@ -83,12 +83,14 @@ updateMusicSpeed:
83
tay
84
85
; check if crunch mode
86
- lda practiseType
87
- cmp #MODE_CRUNCH
+ ldx practiseType
+ cpx #MODE_CRUNCH
88
bne @notCrunch
89
90
; start at first clear column and repeat only for playable columns
91
- ldy crunchLeftColumns
+ clc
92
+ adc crunchLeftColumns ; accumulator is still 50, offset with left columns
93
+ tay
94
ldx crunchClearColumns
95
bne @checkForBlockInRow ; unconditional, expected range 4 - 10
96
0 commit comments