diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-04 22:34:55 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-10-04 22:34:55 -0400 |
commit | 3745ba9f9e58088b5abd9899ed4783d22654f8a0 (patch) | |
tree | ea73659071fe6a3801188bfbcfbbc7b63c9d3497 /engine/phone | |
parent | d634097c586e4ca3513a7afd34f645be9c8022d2 (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 7b2646ed..e94ed412 100644 --- a/engine/phone/phone.asm +++ b/engine/phone/phone.asm @@ -318,7 +318,7 @@ SpecialCallWhereverYouAre: scf ret -Function901a1: +MakePhoneCallFromPokegear: ; Don't do the call if you're in a link communication ld a, [wLinkMode] and a @@ -469,7 +469,7 @@ RingTwice_StartCall: Phone_CallerTextboxWithName: ld a, [wCurCaller] ld b, a - call Function90357 + call Phone_TextboxWithName ret PhoneCall:: @@ -576,7 +576,7 @@ Phone_Wait20Frames: farcall PhoneRing_CopyTilemapAtOnce ret -Function90357: +Phone_TextboxWithName: push bc call Phone_CallerTextbox hlcoord 1, 1 @@ -586,7 +586,7 @@ Function90357: ld d, h ld e, l pop bc - call Function90374 + call GetCallerClassAndName ret Phone_CallerTextbox: @@ -596,7 +596,7 @@ Phone_CallerTextbox: call Textbox ret -Function90374: +GetCallerClassAndName: ld h, d ld l, e ld a, b |