diff options
| author | Vortyne <104168801+Vortyne@users.noreply.github.com> | 2023-12-23 19:24:29 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-12-23 19:24:29 -0500 |
| commit | 0b20304e6d22baaf7c61439e5e087f2d93f98e39 (patch) | |
| tree | cacf8a83f594c04f0a2d52fe87599e6d15b4b6d4 | |
| parent | Clean up item comments (#443) (diff) | |
| download | pokeyellow-0b20304e6d22baaf7c61439e5e087f2d93f98e39.tar.gz pokeyellow-0b20304e6d22baaf7c61439e5e087f2d93f98e39.tar.xz pokeyellow-0b20304e6d22baaf7c61439e5e087f2d93f98e39.zip | |
Use BANK("Trainer Sight") to apply to all four possible functions in the "Trainer Sight" section (#444)
| -rw-r--r-- | home/trainers.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/home/trainers.asm b/home/trainers.asm index e0195729..011c1d6d 100644 --- a/home/trainers.asm +++ b/home/trainers.asm @@ -258,7 +258,7 @@ SetSpritePosition1:: SetSpritePosition2:: ld hl, _SetSpritePosition2 SpritePositionBankswitch:: - ld b, BANK(_GetSpritePosition1) ; BANK(_GetSpritePosition2), BANK(_SetSpritePosition1), BANK(_SetSpritePosition2) + ld b, BANK("Trainer Sight") jp Bankswitch ; indirect jump to one of the four functions CheckForEngagingTrainers:: |
