diff options
| author | Narishma-gb <194818981+Narishma-gb@users.noreply.github.com> | 2025-09-10 06:31:11 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-10 00:31:11 -0400 |
| commit | d237b01cfb241f417567c964e0df0658cf921570 (patch) | |
| tree | 799e92e48259443aa6cf4c553ed7adf38bd442d4 /home/map_objects.asm | |
| parent | Merge branch 'master' of https://github.com/pret/pokered (diff) | |
| download | pokeyellow-d237b01cfb241f417567c964e0df0658cf921570.tar.gz pokeyellow-d237b01cfb241f417567c964e0df0658cf921570.tar.xz pokeyellow-d237b01cfb241f417567c964e0df0658cf921570.zip | |
Misc. naming and cleanup (#139)
* Name some printer/diploma routines
* Name `wd434`
* Name `NAME_LENGTH_JP`
* Rename `callabd`/`calladb` to `farcall`/`callfar`
Diffstat (limited to 'home/map_objects.asm')
| -rw-r--r-- | home/map_objects.asm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/home/map_objects.asm b/home/map_objects.asm index 0988abae..2e553371 100644 --- a/home/map_objects.asm +++ b/home/map_objects.asm @@ -71,7 +71,7 @@ IsItemInBag:: IsSurfingPikachuInParty:: ; set bit 6 of wd471 if any Pikachu with Surf is in party ; set bit 7 of wd471 if starter Pikachu is in party (with or without Surf) -; also performs a bankswitch to IsStarterPikachuInOurParty +; also performs a bankswitch to IsStarterPikachuAliveInOurParty ld a, [wd471] and $3f ld [wd471], a @@ -114,7 +114,7 @@ IsSurfingPikachuInParty:: .checkForStarter push hl push bc - callfar IsStarterPikachuInOurParty + callfar IsStarterPikachuAliveInOurParty pop bc pop hl ret nc |
