You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-09-08 08:13:02 -07:00
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:
@@ -310,7 +310,7 @@ _PlayerMailBoxMenu:
|
||||
jp MenuTextBoxBackup
|
||||
|
||||
.EmptyMailboxText:
|
||||
text_jump _EmptyMailboxText
|
||||
text_far _EmptyMailboxText
|
||||
db "@"
|
||||
|
||||
InitMail:
|
||||
@@ -453,15 +453,15 @@ MailboxPC:
|
||||
jp MenuTextBoxBackup
|
||||
|
||||
.PutAwayText:
|
||||
text_jump ClearedMailPutAwayText
|
||||
text_far ClearedMailPutAwayText
|
||||
db "@"
|
||||
|
||||
.PackFullText:
|
||||
text_jump MailPackFullText
|
||||
text_far MailPackFullText
|
||||
db "@"
|
||||
|
||||
.MessageLostText:
|
||||
text_jump MailMessageLostText
|
||||
text_far MailMessageLostText
|
||||
db "@"
|
||||
|
||||
.GetMailType:
|
||||
@@ -521,15 +521,15 @@ MailboxPC:
|
||||
jp CloseSubmenu
|
||||
|
||||
.HoldingMailText:
|
||||
text_jump MailAlreadyHoldingItemText
|
||||
text_far MailAlreadyHoldingItemText
|
||||
db "@"
|
||||
|
||||
.EggText:
|
||||
text_jump MailEggText
|
||||
text_far MailEggText
|
||||
db "@"
|
||||
|
||||
.MailMovedText:
|
||||
text_jump MailMovedFromBoxText
|
||||
text_far MailMovedFromBoxText
|
||||
db "@"
|
||||
|
||||
.Cancel:
|
||||
|
||||
Reference in New Issue
Block a user