diff options
author | Pokechu22 <Pokechu022@gmail.com> | 2017-09-29 19:16:08 -0700 |
---|---|---|
committer | Pokechu22 <Pokechu022@gmail.com> | 2017-09-29 19:16:08 -0700 |
commit | 901844f536e7eef58045c3dbeb6387e2c78ba870 (patch) | |
tree | bfb94c2f0cd29633a6a68e27b024685f7c52677c /wram.asm | |
parent | 9ea25bc8cd32df5b3bcf6333c3d2582e1b11f2dd (diff) |
Use unions rather than negative offsets
Diffstat (limited to 'wram.asm')
-rwxr-xr-x | wram.asm | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -3137,10 +3137,12 @@ wEnemyPartyCount:: ds 1 ; d89c wEnemyPartyMons:: ds PARTY_LENGTH + 1 ; d89d ; Overload enemy party data +UNION + wWaterRate:: db ; d8a4 wWaterMons:: db ; d8a5 - ds wWaterRate - @ +NEXTU wEnemyMons:: ; d8a4 wEnemyMon1:: party_struct wEnemyMon1 @@ -3153,6 +3155,8 @@ wEnemyMon6:: party_struct wEnemyMon6 wEnemyMonOT:: ds NAME_LENGTH * PARTY_LENGTH ; d9ac wEnemyMonNicks:: ds NAME_LENGTH * PARTY_LENGTH ; d9ee +ENDU + wTrainerHeaderPtr:: ; da30 ds 2 |