diff options
author | Astatin <[email protected]> | 2025-01-10 16:08:06 +0900 |
---|---|---|
committer | Astatin <[email protected]> | 2025-01-10 16:08:06 +0900 |
commit | dc5a9431bf4438000dcd028aa6b9c17c9ca492d8 (patch) | |
tree | 8a63e04d017dc58d8c88f9842e2cd2ca7273ab05 /attacks/heal.gbasm | |
parent | 48f765802fc16071d1d605b1fd940bda4562d472 (diff) |
Use new relative label thingy
Diffstat (limited to 'attacks/heal.gbasm')
-rw-r--r-- | attacks/heal.gbasm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/attacks/heal.gbasm b/attacks/heal.gbasm index 4aacc23..281726a 100644 --- a/attacks/heal.gbasm +++ b/attacks/heal.gbasm @@ -3,9 +3,9 @@ Heal_Attack: ADD $03 DAA CP $20 - JR C, =Heal_Attack.Set_health + JR C, =.Set_health LD A, $20 - Heal_Attack.Set_health: + .Set_health: LD $mem_bunny_health, A PUSH BC |