mirror of
https://github.com/thornAvery/jep-hack.git
synced 2025-09-16 10:13:24 +12:00
reversed order of text speed options
This commit is contained in:
parent
95c17786bb
commit
0e8244b832
|
@ -114,9 +114,9 @@ GetOptionPointer:
|
|||
Options_TextSpeed:
|
||||
call GetTextSpeed
|
||||
ldh a, [hJoyPressed]
|
||||
bit D_LEFT_F, a
|
||||
jr nz, .LeftPressed
|
||||
bit D_RIGHT_F, a
|
||||
jr nz, .RightPressed
|
||||
bit D_LEFT_F, a
|
||||
jr z, .NonePressed
|
||||
ld a, c ; right pressed
|
||||
cp OPT_TEXT_SPEED_NONE
|
||||
|
@ -128,7 +128,7 @@ Options_TextSpeed:
|
|||
ld a, e
|
||||
jr .Save
|
||||
|
||||
.LeftPressed:
|
||||
.RightPressed:
|
||||
ld a, c
|
||||
and a
|
||||
jr nz, .Decrease
|
||||
|
|
Loading…
Reference in a new issue