diff options
author | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-01-23 17:39:09 -0500 |
---|---|---|
committer | luckytyphlosion <10688458+luckytyphlosion@users.noreply.github.com> | 2018-01-23 17:39:09 -0500 |
commit | a1951cefc09035e11077a433b28ec8c66b3b03db (patch) | |
tree | 4de98db5a6edb6d74192028d50893da2b764421f /engine/health.asm | |
parent | 79bd48f85c7dd1868264e290b12dad17a6e25b95 (diff) |
Prefix wram labels with w, part 2.
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 |