summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoraaaaaa123456789 <aaaaaa123456789@acidch.at>2019-01-27 02:14:17 -0300
committeraaaaaa123456789 <aaaaaa123456789@acidch.at>2019-01-27 02:14:17 -0300
commitadc2958fb38675e76501a6b6987b7ae11682ed56 (patch)
treec00313748a351bef89973fe63a86a6584ed9344e
parentd4dbea02dc12c68f6fadee6f4b8a70d74f3d646d (diff)
Move quotes inside backticks, since they are part of the code (and curse loudly at whoever made the Enter key submit changes to the page...)
-rw-r--r--Tips-and-tricks.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/Tips-and-tricks.md b/Tips-and-tricks.md
index 8161145..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