summaryrefslogtreecommitdiff
path: root/engine/party_menu.asm
diff options
context:
space:
mode:
authorPikalaxALT <PikalaxALT@gmail.com>2015-12-23 14:00:29 -0500
committerPikalaxALT <PikalaxALT@gmail.com>2015-12-23 14:00:29 -0500
commit3893feb835ef4959b77148668da90aaed3189b00 (patch)
tree5d39196a1cdc146f85a6f058222811b4241efd1e /engine/party_menu.asm
parentddc05ec8dd36eb88d48a5dab258f4daae85eadc3 (diff)
Battle Anim Object struct constants
Diffstat (limited to 'engine/party_menu.asm')
-rw-r--r--engine/party_menu.asm14
1 files changed, 9 insertions, 5 deletions
diff --git a/engine/party_menu.asm b/engine/party_menu.asm
index 7fc179b67..35f6e3d47 100644
--- a/engine/party_menu.asm
+++ b/engine/party_menu.asm
@@ -678,7 +678,7 @@ InitPartyMenuWithCancel: ; 50405
xor a
ld [wSwitchMon], a
ld de, PartyMenuAttributes
- call InitMenu3
+ call SetMenuAttributes
ld a, [PartyCount]
inc a
ld [w2DMenuNumRows], a ; list length
@@ -704,7 +704,7 @@ InitPartyMenuWithCancel: ; 50405
InitPartyMenuNoCancel: ; 0x5042d
; no cancel
ld de, PartyMenuAttributes
- call InitMenu3
+ call SetMenuAttributes
ld a, [PartyCount]
ld [w2DMenuNumRows], a ; list length
ld b, a
@@ -726,13 +726,17 @@ InitPartyMenuNoCancel: ; 0x5042d
PartyMenuAttributes: ; 5044f
; cursor y
; cursor x
-; list length
-; ?
+; num rows
+; num cols
; bit 6: animate sprites bit 5: wrap around
; ?
; distance between items (hi: y, lo: x)
; allowed buttons (mask)
- db $01, $00, $00, $01, $60, $00, $20, $00
+ db 1, 0
+ db 0, 1
+ db $60, $00
+ dn 2, 0
+ db 0
; 50457
PartyMenuSelect: ; 0x50457