File tree Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Expand file tree Collapse file tree 2 files changed +11
-8
lines changed Original file line number Diff line number Diff line change 13
13
* Fixed ingame score display at 8 million with Classic Scoring
14
14
* Fixed CNROM legal screen CHR bank
15
15
* Fixed CNROM legal to title flicker
16
+ * Fixed a bug in Sonic Drop
16
17
* Block Tool pieces wrap around
17
18
* Always Next Box removed
18
19
* 0001 seeds are ignored
Original file line number Diff line number Diff line change @@ -136,15 +136,10 @@ stageSpriteForCurrentPiece_return:
136
136
rts
137
137
138
138
stageSpriteForNextPiece:
139
- lda practiseType
140
- cmp #MODE_HARDDROP
141
- beq @alwaysNextBox
142
- lda debugFlag
143
- bne @alwaysNextBox
144
139
lda displayNextPiece
145
- bne @ret
140
+ bne @maybeDisplayNextPiece
146
141
147
- @alwaysNextBox :
142
+ @displayNextPiece :
148
143
lda #$C8
149
144
sta spriteXOffset
150
145
lda #$77
@@ -153,4 +148,11 @@ stageSpriteForNextPiece:
153
148
lda orientationToSpriteTable,x
154
149
sta spriteIndexInOamContentLookup
155
150
jmp loadSpriteIntoOamStaging
156
- @ret: rts
151
+
152
+ @maybeDisplayNextPiece:
153
+ lda practiseType
154
+ cmp #MODE_HARDDROP
155
+ beq @displayNextPiece
156
+ lda debugFlag
157
+ bne @displayNextPiece
158
+ rts
You can’t perform that action at this time.
0 commit comments