diff options
author | yenatch <yenatch@gmail.com> | 2018-02-03 17:15:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-03 17:15:20 -0500 |
commit | b35eb72290b964b98844afbe741bb7ede34b9ef3 (patch) | |
tree | 2cf2652bc9c3e69ae5f7b2a2632c02a12498615f /engine/health.asm | |
parent | 7547ad839cf1c8141b931d08ef16a894e7db68c9 (diff) | |
parent | 32ade4ac9bf113d630d904aab51f2c49c91bf8c2 (diff) |
Merge pull request #480 from luckytyphlosion/master
[Ready to merge] Prefix wram labels with w.
Diffstat (limited to 'engine/health.asm')
-rwxr-xr-x | engine/health.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/health.asm b/engine/health.asm index 0f7ba156d..cc47e8252 100755 --- a/engine/health.asm +++ b/engine/health.asm @@ -1,7 +1,7 @@ HealParty: ; c658 xor a - ld [CurPartyMon], a - ld hl, PartySpecies + ld [wCurPartyMon], a + ld hl, wPartySpecies .loop ld a, [hli] cp -1 @@ -14,9 +14,9 @@ HealParty: ; c658 pop hl .next - ld a, [CurPartyMon] + ld a, [wCurPartyMon] inc a - ld [CurPartyMon], a + ld [wCurPartyMon], a jr .loop .done |