diff options
author | mid-kid <esteve.varela@gmail.com> | 2018-10-28 17:16:55 +0100 |
---|---|---|
committer | mid-kid <esteve.varela@gmail.com> | 2018-11-05 22:26:18 +0100 |
commit | 940256569b84e71c5a448709d67964735ff4a5c9 (patch) | |
tree | 33e78661f5317aa93b54e501272bb5c5040a0574 /engine/phone | |
parent | 0af682d38ae9e60095dc2a0e11830fc8fec15d02 (diff) |
text_jump → text_far
The previous name for this was rather misleading. It isn't an actual
jump like you'd expect the `jp` instruction to behave as. Instead, it
behaves more like a `farcall`.
This also makes it consistent with its current command ID name of
`TX_FAR`.
Diffstat (limited to 'engine/phone')
-rw-r--r-- | engine/phone/phone.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engine/phone/phone.asm b/engine/phone/phone.asm index f5fc0b610..769ed513d 100644 --- a/engine/phone/phone.asm +++ b/engine/phone/phone.asm @@ -416,7 +416,7 @@ WrongNumber: end .text ; Huh? Sorry, wrong number! - text_jump UnknownText_0x1c5565 + text_far UnknownText_0x1c5565 db "@" Script_ReceivePhoneCall: @@ -541,7 +541,7 @@ HangUp_Beep: ret UnknownText_0x9032a: - text_jump UnknownText_0x1c5580 + text_far UnknownText_0x1c5580 db "@" HangUp_BoopOn: @@ -550,7 +550,7 @@ HangUp_BoopOn: ret UnknownText_0x90336: - text_jump UnknownText_0x1c5588 + text_far UnknownText_0x1c5588 db "@" HangUp_BoopOff: @@ -710,7 +710,7 @@ UnknownScript_0x90657: UnknownText_0x9065b: ; That number is out of the area. - text_jump UnknownText_0x1c558b + text_far UnknownText_0x1c558b db "@" PhoneScript_JustTalkToThem: @@ -719,7 +719,7 @@ PhoneScript_JustTalkToThem: UnknownText_0x90664: ; Just go talk to that person! - text_jump UnknownText_0x1c55ac + text_far UnknownText_0x1c55ac db "@" UnknownScript_0x90669: @@ -728,5 +728,5 @@ UnknownScript_0x90669: UnknownText_0x9066d: ; Thank you! - text_jump UnknownText_0x1c55ca + text_far UnknownText_0x1c55ca db "@" |