Skip to content

Commit ccb8475

Browse files
authored
Merge branch 'kirjavascript:master' into mapper_edit
2 parents b79e4f4 + b82a3dd commit ccb8475

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

src/gamemodestate/pause.asm

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,6 @@ pause:
3030
@pauseSetupClassic:
3131
lda #$16
3232
sta PPUMASK
33-
jmp @pauseSetupPart2
34-
3533
@pauseSetupNotClassic:
3634
lda #$04 ; render_mode_pause
3735
sta renderMode

src/ram.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ highScoreEntryRawPos: .res 1 ; $00D5 ; High score position 0=1st
136136
highScoreEntryNameOffsetForRow: .res 1 ; $00D6 ; Relative to start of table
137137
highScoreEntryCurrentLetter: .res 1 ; $00D7
138138
lineClearStatsByType: .res 7 ; $00D8 ; bcd. one entry for each of single, double, triple, tetris
139-
displayNextPiece: .res 1 ; $00DF
139+
hideNextPiece: .res 1 ; $00DF
140140
AUDIOTMP1: .res 1 ; $00E0
141141
AUDIOTMP2: .res 1 ; $00E1
142142
AUDIOTMP3: .res 1 ; $00E2

src/util/core.asm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,6 @@ generateNextPseudorandomNumber2x:
245245
generateNextPseudorandomNumber:
246246
lda tmp1,x
247247
eor tmp2,x
248-
and #$02
249248
lsr
250249
lsr
251250
ror tmp1,x
@@ -254,7 +253,7 @@ generateNextPseudorandomNumber:
254253
sbc #$00
255254
bpl @noReset
256255
lda #$2
257-
@noReset:
256+
@noReset:
258257
sta oneThirdPRNG
259258
rts
260259

0 commit comments

Comments
 (0)