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
|
inc a
|
||||||
ld [wPartyMenuCursor], a
|
ld [wPartyMenuCursor], a
|
||||||
call SetUpMoveScreenBG
|
call SetUpMoveScreenBG
|
||||||
call Function132d3
|
call PlaceMoveScreenArrows
|
||||||
ld de, MoveScreenAttributes
|
ld de, MoveScreenAttributes
|
||||||
call SetMenuAttributes
|
call SetMenuAttributes
|
||||||
.loop
|
.loop
|
||||||
|
@ -1228,12 +1228,12 @@ String_MoveAtk:
|
||||||
String_MoveNoPower:
|
String_MoveNoPower:
|
||||||
db "---@"
|
db "---@"
|
||||||
|
|
||||||
Function132d3:
|
PlaceMoveScreenArrows:
|
||||||
call Function132da
|
call PlaceMoveScreenLeftArrow
|
||||||
call Function132fe
|
call PlaceMoveScreenRightArrow
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Function132da:
|
PlaceMoveScreenLeftArrow:
|
||||||
ld a, [wCurPartyMon]
|
ld a, [wCurPartyMon]
|
||||||
and a
|
and a
|
||||||
ret z
|
ret z
|
||||||
|
@ -1262,7 +1262,7 @@ Function132da:
|
||||||
ld [hl], "◀"
|
ld [hl], "◀"
|
||||||
ret
|
ret
|
||||||
|
|
||||||
Function132fe:
|
PlaceMoveScreenRightArrow:
|
||||||
ld a, [wCurPartyMon]
|
ld a, [wCurPartyMon]
|
||||||
inc a
|
inc a
|
||||||
ld c, a
|
ld c, a
|
||||||
|
|
Loading…
Reference in New Issue