diff options
author | libjet <libj3t@gmail.com> | 2019-12-11 01:38:36 +0000 |
---|---|---|
committer | libjet <libj3t@gmail.com> | 2019-12-11 01:38:36 +0000 |
commit | 93872e920e9c82e1299a7f674cba5b56397b359d (patch) | |
tree | ad89e14c568a891b702b07e1b44ac25ab253ad73 /engine/learn.asm | |
parent | cc8fc02a9467307f1494946fd08b4e57d4ffdac5 (diff) |
Updated macros/scripts/text.asm and cleaned up macros.asm
Diffstat (limited to 'engine/learn.asm')
-rw-r--r-- | engine/learn.asm | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/engine/learn.asm b/engine/learn.asm index f6e06572..c3cb6a2f 100644 --- a/engine/learn.asm +++ b/engine/learn.asm @@ -182,28 +182,28 @@ LearnMove: ret Text_LearnedMove: - text_jump Text_LearnedMove_ + text_far Text_LearnedMove_ db "@" Text_ForgetWhich: - text_jump Text_ForgetWhich_ + text_far Text_ForgetWhich_ db "@" Text_StopLearning: - text_jump Text_StopLearning_ + text_far Text_StopLearning_ db "@" Text_DidNotLearn: - text_jump Text_DidNotLearn_ + text_far Text_DidNotLearn_ db "@" Text_TryingToLearn: - text_jump Text_TryingToLearn_ + text_far Text_TryingToLearn_ db "@" Text_1_2_and_Poof: - text_jump Text_1_2_and_Poof_ - start_asm + text_far Text_1_2_and_Poof_ + text_asm push de ld de, SFX_SWITCH_POKEMON call PlaySFX @@ -212,9 +212,9 @@ Text_1_2_and_Poof: ret .PoofForgot: - text_jump Text_PoofForgot_ + text_far Text_PoofForgot_ db "@" Text_CantForgetHM: - text_jump Text_CantForgetHM_ + text_far Text_CantForgetHM_ db "@" |