summaryrefslogtreecommitdiff
path: root/engine/overworld/scripting.asm
diff options
context:
space:
mode:
authormid-kid <esteve.varela@gmail.com>2018-10-28 17:16:55 +0100
committermid-kid <esteve.varela@gmail.com>2018-11-05 22:26:18 +0100
commit940256569b84e71c5a448709d67964735ff4a5c9 (patch)
tree33e78661f5317aa93b54e501272bb5c5040a0574 /engine/overworld/scripting.asm
parent0af682d38ae9e60095dc2a0e11830fc8fec15d02 (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/overworld/scripting.asm')
-rw-r--r--engine/overworld/scripting.asm6
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/overworld/scripting.asm b/engine/overworld/scripting.asm
index 6b0932804..0e36c30e2 100644
--- a/engine/overworld/scripting.asm
+++ b/engine/overworld/scripting.asm
@@ -536,7 +536,7 @@ GiveItemScript:
end
ReceivedItemText:
- text_jump UnknownText_0x1c4719
+ text_far UnknownText_0x1c4719
db "@"
Script_verbosegiveitem2:
@@ -628,11 +628,11 @@ CurItemName:
ret
PutItemInPocketText:
- text_jump UnknownText_0x1c472c
+ text_far UnknownText_0x1c472c
db "@"
PocketIsFullText:
- text_jump UnknownText_0x1c474b
+ text_far UnknownText_0x1c474b
db "@"
Script_pokemart: