aboutsummaryrefslogtreecommitdiffstats
path: root/engine/overworld/pathfinding.asm
diff options
context:
space:
mode:
authorRangi <remy.oukaour+rangi42@gmail.com>2022-07-10 21:11:03 -0400
committerRangi <remy.oukaour+rangi42@gmail.com>2022-07-10 21:27:24 -0400
commit96656fdc69964c2f4d7e0ce2c3dbfd1729f75af0 (patch)
tree103935618b8f9c8050b37fd4e51387e0a6fe0099 /engine/overworld/pathfinding.asm
parentReplace "branch" labels in SFX files with local names (diff)
downloadpokeyellow-96656fdc69964c2f4d7e0ce2c3dbfd1729f75af0.tar.gz
pokeyellow-96656fdc69964c2f4d7e0ce2c3dbfd1729f75af0.tar.xz
pokeyellow-96656fdc69964c2f4d7e0ce2c3dbfd1729f75af0.zip
Identify some `.asm_*` labels
Diffstat (limited to 'engine/overworld/pathfinding.asm')
-rw-r--r--engine/overworld/pathfinding.asm8
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/overworld/pathfinding.asm b/engine/overworld/pathfinding.asm
index a824d337..d067345e 100644
--- a/engine/overworld/pathfinding.asm
+++ b/engine/overworld/pathfinding.asm
@@ -14,22 +14,22 @@ FindPathToPlayer:
call CalcDifference
ld d, a
and a
- jr nz, .asm_f76a
+ jr nz, .stillHasYProgress
ldh a, [hFindPathFlags]
set 0, a ; current end of path matches the player's Y coordinate
ldh [hFindPathFlags], a
-.asm_f76a
+.stillHasYProgress
ldh a, [hFindPathXProgress]
ld b, a
ldh a, [hNPCPlayerXDistance] ; X distance in steps
call CalcDifference
ld e, a
and a
- jr nz, .asm_f77c
+ jr nz, .stillHasXProgress
ldh a, [hFindPathFlags]
set 1, a ; current end of path matches the player's X coordinate
ldh [hFindPathFlags], a
-.asm_f77c
+.stillHasXProgress
ldh a, [hFindPathFlags]
cp $3 ; has the end of the path reached the player's position?
jr z, .done