aboutsummaryrefslogtreecommitdiff
path: root/entity/bunny.gbasm
diff options
context:
space:
mode:
authorAstatin <[email protected]>2025-01-10 16:08:06 +0900
committerAstatin <[email protected]>2025-01-10 16:08:06 +0900
commitdc5a9431bf4438000dcd028aa6b9c17c9ca492d8 (patch)
tree8a63e04d017dc58d8c88f9842e2cd2ca7273ab05 /entity/bunny.gbasm
parent48f765802fc16071d1d605b1fd940bda4562d472 (diff)
Use new relative label thingy
Diffstat (limited to 'entity/bunny.gbasm')
-rw-r--r--entity/bunny.gbasm4
1 files changed, 2 insertions, 2 deletions
diff --git a/entity/bunny.gbasm b/entity/bunny.gbasm
index 2e61554..7f274ff 100644
--- a/entity/bunny.gbasm
+++ b/entity/bunny.gbasm
@@ -1,13 +1,13 @@
Move_Bunny:
LD A, $mem_bunny_health
CP $00
- JR NZ, =Move_Bunny.not_dead
+ JR NZ, =.not_dead
LD A, $20
LD $mem_bunny_direction, A
RET
- Move_Bunny.not_dead:
+ .not_dead:
LD A, $mem_bunny_flags
LD E, $01