summaryrefslogtreecommitdiff
path: root/engine/health.asm
diff options
context:
space:
mode:
Diffstat (limited to 'engine/health.asm')
-rwxr-xr-xengine/health.asm8
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