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

@@ -34,5 +34,5 @@ BugContest_SetCaughtContestMon:
.caughttext
; Caught @ !
text_jump UnknownText_0x1c10c0
text_far UnknownText_0x1c10c0
db "@"

View File

@@ -34,10 +34,10 @@ BugCatchingContestReturnToGateScript:
BugCatchingContestText_BeeepTimesUp:
; ANNOUNCER: BEEEP! Time's up!
text_jump UnknownText_0x1bd2ca
text_far UnknownText_0x1bd2ca
db "@"
BugCatchingContestText_ContestIsOver:
; ANNOUNCER: The Contest is over!
text_jump UnknownText_0x1bd2e7
text_far UnknownText_0x1bd2e7
db "@"

View File

@@ -88,7 +88,7 @@ DisplayCaughtContestMonStats:
SwitchMonText:
; Switch #MON?
text_jump UnknownText_0x1c10cf
text_far UnknownText_0x1c10cf
db "@"
DisplayAlreadyCaughtText:
@@ -98,7 +98,7 @@ DisplayAlreadyCaughtText:
.AlreadyCaughtText:
; You already caught a @ .
text_jump UnknownText_0x1c10dd
text_far UnknownText_0x1c10dd
db "@"
DummyPredef2F:

View File

@@ -26,7 +26,7 @@ _BugContestJudging:
jp BugContest_GetPlayersResult
BugContest_FirstPlaceText:
text_jump ContestJudging_FirstPlaceText
text_far ContestJudging_FirstPlaceText
start_asm
ld de, SFX_1ST_PLACE
call PlaySFX
@@ -36,12 +36,12 @@ BugContest_FirstPlaceText:
BugContest_FirstPlaceScoreText:
; The winning score was @ points!
text_jump ContestJudging_FirstPlaceScoreText
text_far ContestJudging_FirstPlaceScoreText
db "@"
BugContest_SecondPlaceText:
; Placing second was @ , who caught a @ !@ @
text_jump ContestJudging_SecondPlaceText
text_far ContestJudging_SecondPlaceText
start_asm
ld de, SFX_2ND_PLACE
call PlaySFX
@@ -51,12 +51,12 @@ BugContest_SecondPlaceText:
BugContest_SecondPlaceScoreText:
; The score was @ points!
text_jump ContestJudging_SecondPlaceScoreText
text_far ContestJudging_SecondPlaceScoreText
db "@"
BugContest_ThirdPlaceText:
; Placing third was @ , who caught a @ !@ @
text_jump ContestJudging_ThirdPlaceText
text_far ContestJudging_ThirdPlaceText
start_asm
ld de, SFX_3RD_PLACE
call PlaySFX
@@ -66,7 +66,7 @@ BugContest_ThirdPlaceText:
BugContest_ThirdPlaceScoreText:
; The score was @ points!
text_jump ContestJudging_ThirdPlaceScoreText
text_far ContestJudging_ThirdPlaceScoreText
db "@"
LoadContestantName: