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/rtc/restart_clock.asm | |
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/rtc/restart_clock.asm')
-rw-r--r-- | engine/rtc/restart_clock.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/rtc/restart_clock.asm b/engine/rtc/restart_clock.asm index 309faaed2..b65550f43 100644 --- a/engine/rtc/restart_clock.asm +++ b/engine/rtc/restart_clock.asm @@ -49,12 +49,12 @@ RestartClock: .Text_ClockTimeMayBeWrong: ; The clock's time may be wrong. Please reset the time. - text_jump UnknownText_0x1c40e6 + text_far UnknownText_0x1c40e6 db "@" .Text_SetWithControlPad: ; Set with the Control Pad. Confirm: A Button Cancel: B Button - text_jump UnknownText_0x1c411c + text_far UnknownText_0x1c411c db "@" .SetClock: @@ -103,12 +103,12 @@ RestartClock: .Text_IsThisOK: ; Is this OK? - text_jump UnknownText_0x1c415b + text_far UnknownText_0x1c415b db "@" .Text_ClockReset: ; The clock has been reset. - text_jump UnknownText_0x1c4168 + text_far UnknownText_0x1c4168 db "@" .joy_loop |