diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-05-31 11:46:13 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-05-31 11:46:13 -0400 |
commit | 1e58df98af9d45fa4d75922a274840e441685a37 (patch) | |
tree | 6f3a014df309f49d2da566a751df20d5feb5b8ee /home | |
parent | b3eadb3508d97f48bda3f14c15378df24942719a (diff) |
Improve some RAM formatting
Diffstat (limited to 'home')
-rw-r--r-- | home/names2.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/home/names2.asm b/home/names2.asm index 73aabb1c..b0be05df 100644 --- a/home/names2.asm +++ b/home/names2.asm @@ -20,11 +20,11 @@ GetName:: ; TM names are separate from item names. ; BUG: This applies to all names instead of just items. - assert NUM_POKEMON_INDEXES < HM01, \ + ASSERT NUM_POKEMON_INDEXES < HM01, \ "A bug in GetName will get TM/HM names for Pokémon above ${x:HM01}." - assert NUM_ATTACKS < HM01, \ + ASSERT NUM_ATTACKS < HM01, \ "A bug in GetName will get TM/HM names for moves above ${x:HM01}." - assert NUM_TRAINERS < HM01, \ + ASSERT NUM_TRAINERS < HM01, \ "A bug in GetName will get TM/HM names for trainers above ${x:HM01}." cp HM01 jp nc, GetMachineName |