Skip to content

Commit 3944a87

Browse files
committed
fix: seed low nybble decrement
1 parent f6391ed commit 3944a87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/gamemode/gametypemenu/menu.asm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,6 @@ seedControls:
232232
jmp @skipSeedDown
233233
@lowNybbleDown:
234234
lda set_seed_input, x
235-
clc
236235
tay
237236
and #$F
238237
; cmp #$0 ; and sets z flag
@@ -245,6 +244,7 @@ seedControls:
245244
jmp @skipSeedDown
246245
@noWrapDown:
247246
tya
247+
sec
248248
sbc #1
249249
sta set_seed_input, x
250250
@skipSeedDown:

0 commit comments

Comments
 (0)