mirror of https://github.com/pret/pokecrystal.git
Identify some move screen functions
This commit is contained in:
parent
61887c8c07
commit
f511713c86
|
@ -877,7 +877,7 @@ MoveScreenLoop:
|
|||
inc a
|
||||
ld [wPartyMenuCursor], a
|
||||
call SetUpMoveScreenBG
|
||||
call Function132d3
|
||||
call PlaceMoveScreenArrows
|
||||
ld de, MoveScreenAttributes
|
||||
call SetMenuAttributes
|
||||
.loop
|
||||
|
@ -1228,12 +1228,12 @@ String_MoveAtk:
|
|||
String_MoveNoPower:
|
||||
db "---@"
|
||||
|
||||
Function132d3:
|
||||
call Function132da
|
||||
call Function132fe
|
||||
PlaceMoveScreenArrows:
|
||||
call PlaceMoveScreenLeftArrow
|
||||
call PlaceMoveScreenRightArrow
|
||||
ret
|
||||
|
||||
Function132da:
|
||||
PlaceMoveScreenLeftArrow:
|
||||
ld a, [wCurPartyMon]
|
||||
and a
|
||||
ret z
|
||||
|
@ -1262,7 +1262,7 @@ Function132da:
|
|||
ld [hl], "◀"
|
||||
ret
|
||||
|
||||
Function132fe:
|
||||
PlaceMoveScreenRightArrow:
|
||||
ld a, [wCurPartyMon]
|
||||
inc a
|
||||
ld c, a
|
||||
|
|
Loading…
Reference in New Issue