fix typo on stub x/y inputs

was accidentally falling through to the load
a viewport from a keypress thingy which was
not needed here
This commit is contained in:
Brooke Vibber 2025-09-01 12:28:33 -07:00
commit b46e6fb343

View file

@ -1650,12 +1650,12 @@ letter_keys:
cpy #KEY_X cpy #KEY_X
bne not_x bne not_x
jsr input_x jsr input_x
jmp load_key_viewport jmp done
not_x: not_x:
cpy #KEY_Y cpy #KEY_Y
bne not_y bne not_y
jsr input_y jsr input_y
jmp load_key_viewport jmp done
not_y: not_y:
jmp skip_char jmp skip_char