diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-01-27 17:15:19 -0500 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2019-01-27 17:15:19 -0500 |
commit | 9786a165ff48c7fc86dc982110b24db7c6030ddf (patch) | |
tree | aa5a0aec57db9880698c7054ca186a37b6bf475b /Tips-and-tricks.md | |
parent | 180edac03eed01251ae1a4cbf9750c00b95f6f03 (diff) | |
parent | 77660a837d7d4a67dbaf0694ff381ae8dcbe717f (diff) |
Merge branch 'master' of https://github.com/pret/pokecrystal.wiki
Diffstat (limited to 'Tips-and-tricks.md')
-rw-r--r-- | Tips-and-tricks.md | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/Tips-and-tricks.md b/Tips-and-tricks.md index 15d54e8..714efd4 100644 --- a/Tips-and-tricks.md +++ b/Tips-and-tricks.md @@ -31,5 +31,4 @@ To stop it, edit [engine/tilesets/tileset_anims.asm](../blob/master/engine/tiles ## Lowercasing Pokémon names cuts off their first letter -If you simply lowercase all the names in [data/pokemon/names.asm](../blob/master/data/pokemon/names.asm) and rebuild the ROM, the first letter of their names may be missing. The cause is changing "`FARFETCH'D`" to "`Farfetch'd`", because "`'d`" is actually a single character. The fix is to pad its name to the same length as all the rest with an "`@`", so that it becomes "`Farfetch'd@`". - +If you simply lowercase all the names in [data/pokemon/names.asm](../blob/master/data/pokemon/names.asm) and rebuild the ROM, the first letter of their names may be missing. The cause is changing `"FARFETCH'D"` to `"Farfetch'd"`, because `'d` is actually a single character. The fix is to pad its name to the same length as all the rest with an `@`, so that it becomes `"Farfetch'd@"`.
\ No newline at end of file |