diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-04 22:34:50 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-04 22:34:50 -0400 |
commit | d9603e3e331655bb7e061b612730b68cd4378f96 (patch) | |
tree | a88104407c43ee98faccd789b5ef94967fbcf63a /engine/phone | |
parent | e475ce6fdaad21ba34a64a708f7c23bad5625917 (diff) |
Identify more unnamed labels
Diffstat (limited to 'engine/phone')
-rw-r--r-- | engine/phone/phone.asm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/engine/phone/phone.asm b/engine/phone/phone.asm index 5156ca911..c4c40bbd9 100644 --- a/engine/phone/phone.asm +++ b/engine/phone/phone.asm @@ -311,7 +311,7 @@ SpecialCallWhereverYouAre: scf ret -Function90199: +MakePhoneCallFromPokegear: ; Don't do the call if you're in a link communication ld a, [wLinkMode] and a @@ -465,7 +465,7 @@ RingTwice_StartCall: Phone_CallerTextboxWithName: ld a, [wCurCaller] ld b, a - call Function90363 + call Phone_TextboxWithName ret PhoneCall:: @@ -575,7 +575,7 @@ Phone_Wait20Frames: farcall PhoneRing_CopyTilemapAtOnce ret -Function90363: +Phone_TextboxWithName: push bc call Phone_CallerTextbox hlcoord 1, 1 @@ -585,7 +585,7 @@ Function90363: ld d, h ld e, l pop bc - call Function90380 + call GetCallerClassAndName ret Phone_CallerTextbox: @@ -595,7 +595,7 @@ Phone_CallerTextbox: call Textbox ret -Function90380: +GetCallerClassAndName: ld h, d ld l, e ld a, b |