mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2024-09-09 09:51:34 -07:00
Similar formatting for similar WRAM areas
This commit is contained in:
parent
68d855c213
commit
2a53d75807
@ -568,7 +568,7 @@ ContText:: ; 1345
|
||||
|
||||
|
||||
PlaceDexEnd:: ; 1356
|
||||
; Legacy: ends a Pokédex entry (Red).
|
||||
; Ends a Pokédex entry in Gen 1.
|
||||
; Dex entries are now regular strings.
|
||||
ld [hl], "."
|
||||
pop hl
|
||||
|
@ -14,10 +14,6 @@ callfar: MACRO ; address, bank
|
||||
rst FarCall
|
||||
ENDM
|
||||
|
||||
; legacy support for pre-2018 pokecrystal
|
||||
callba EQUS "farcall"
|
||||
callab EQUS "callfar"
|
||||
|
||||
homecall: MACRO
|
||||
ld a, [hROMBank]
|
||||
push af
|
||||
|
14
wram.asm
14
wram.asm
@ -940,9 +940,9 @@ wLinkDataEnd::
|
||||
NEXTU ; c800
|
||||
; link data members
|
||||
wLinkPlayerName:: ds NAME_LENGTH
|
||||
wLinkPartyCount:: db
|
||||
wLinkPartyCount:: db
|
||||
wLinkPartySpecies:: ds PARTY_LENGTH
|
||||
wLinkPartySpeciesEnd:: db ; legacy scripts don't check PartyCount
|
||||
wLinkPartyEnd:: db ; Gen 1 scripts don't check PartyCount
|
||||
|
||||
UNION ; c813
|
||||
; time capsule party data
|
||||
@ -2198,11 +2198,11 @@ NEXTU ; d26b
|
||||
OTPlayerName:: ds NAME_LENGTH ; d26b
|
||||
ENDU ; d276
|
||||
|
||||
OTPlayerID:: ds 2 ; d276
|
||||
OTPlayerID:: dw ; d276
|
||||
ds 8
|
||||
OTPartyCount:: ds 1 ; d280
|
||||
OTPartyCount:: db ; d280
|
||||
OTPartySpecies:: ds PARTY_LENGTH ; d281
|
||||
OTPartyEnd:: ds 1 ; legacy scripts don't check PartyCount
|
||||
OTPartyEnd:: db ; Gen 1 scripts don't check PartyCount
|
||||
|
||||
UNION ; d288
|
||||
; ot party mons
|
||||
@ -2767,9 +2767,9 @@ SECTION "Party", WRAMX
|
||||
|
||||
wPokemonData::
|
||||
|
||||
PartyCount:: db ; dcd7 ; number of Pokémon in party
|
||||
PartyCount:: db ; dcd7 ; number of Pokémon in party
|
||||
PartySpecies:: ds PARTY_LENGTH ; dcd8 ; species of each Pokémon in party
|
||||
PartyEnd:: db ; dcde ; legacy scripts don't check PartyCount
|
||||
PartyEnd:: db ; dcde ; Gen 1 scripts don't check PartyCount
|
||||
|
||||
PartyMons::
|
||||
PartyMon1:: party_struct PartyMon1 ; dcdf
|
||||
|
Loading…
Reference in New Issue
Block a user