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`.
This commit is contained in:
mid-kid
2018-10-28 17:16:55 +01:00
parent 0af682d38a
commit 940256569b
85 changed files with 851 additions and 848 deletions

View File

@@ -703,11 +703,11 @@ OakSpeech:
ret
OakText1:
text_jump _OakText1
text_far _OakText1
db "@"
OakText2:
text_jump _OakText2
text_far _OakText2
start_asm
ld a, WOOPER
call PlayMonCry
@@ -716,23 +716,23 @@ OakText2:
ret
OakText3:
text_jump _OakText3
text_far _OakText3
db "@"
OakText4:
text_jump _OakText4
text_far _OakText4
db "@"
OakText5:
text_jump _OakText5
text_far _OakText5
db "@"
OakText6:
text_jump _OakText6
text_far _OakText6
db "@"
OakText7:
text_jump _OakText7
text_far _OakText7
db "@"
NamePlayer: