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.
2 parents 2e43e54 + 6c8a174 commit 67b7cdbCopy full SHA for 67b7cdb
src/modes/debug.asm
100644
100755
@@ -149,22 +149,24 @@ debugContinue:
149
@notPressedBothA:
150
151
; change current piece
152
- lda newlyPressedButtons_player1
153
- and #BUTTON_B
+ lda #BUTTON_B
+ jsr menuThrottle
154
beq @notPressedB
155
- lda currentPiece
156
- cmp #$1
157
- bmi @notPressedB
158
dec currentPiece
+ bpl @notPressedB
+ lda #$12
+ sta currentPiece
159
@notPressedB:
160
161
162
- and #BUTTON_A
+ lda #BUTTON_A
163
beq @notPressedA
164
165
- cmp #$12
166
- bpl @notPressedA
167
inc currentPiece
+ lda currentPiece
+ cmp #$13
+ bne @notPressedA
168
+ lda #$00
169
170
@notPressedA:
171
172
; handle piece
0 commit comments