You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-04-09 05:44:44 -07:00
Make reviewed fixes; standardize on " + "
This commit is contained in:
@@ -213,7 +213,7 @@ GetJoypad::
|
||||
ld a, l
|
||||
ld [wAutoInputAddress], a
|
||||
ld a, h
|
||||
ld [wAutoInputAddress+1], a
|
||||
ld [wAutoInputAddress + 1], a
|
||||
jr .finishauto
|
||||
|
||||
.stopauto
|
||||
@@ -235,7 +235,7 @@ StartAutoInput::
|
||||
ld a, l
|
||||
ld [wAutoInputAddress], a
|
||||
ld a, h
|
||||
ld [wAutoInputAddress+1], a
|
||||
ld [wAutoInputAddress + 1], a
|
||||
; Start reading the stream immediately.
|
||||
xor a
|
||||
ld [wAutoInputLength], a
|
||||
@@ -254,7 +254,7 @@ StopAutoInput::
|
||||
xor a
|
||||
ld [wAutoInputBank], a
|
||||
ld [wAutoInputAddress], a
|
||||
ld [wAutoInputAddress+1], a
|
||||
ld [wAutoInputAddress + 1], a
|
||||
ld [wAutoInputLength], a
|
||||
; Back to normal input.
|
||||
ld [wInputType], a
|
||||
|
@@ -39,7 +39,7 @@ Predef::
|
||||
ld a, h
|
||||
ld [wPredefTemp], a
|
||||
ld a, l
|
||||
ld [wPredefTemp+1], a
|
||||
ld [wPredefTemp + 1], a
|
||||
|
||||
pop hl
|
||||
ld a, h
|
||||
|
Reference in New Issue
Block a user