diff options
-rw-r--r-- | Add-a-new-Unown-form.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Add-a-new-Unown-form.md b/Add-a-new-Unown-form.md index 201b62c..8dbf21d 100644 --- a/Add-a-new-Unown-form.md +++ b/Add-a-new-Unown-form.md @@ -488,7 +488,7 @@ Edit [engine/pokedex/pokedex.asm](../blob/master/engine/pokedex/pokedex.asm): call Pokedex_InvertTiles ld de, sScratch + $188 ld hl, vTiles2 tile $40 -- lb bc, BANK(Pokedex_LoadUnownFont), 29 +- lb bc, BANK(Pokedex_LoadUnownFont), 27 + lb bc, BANK(Pokedex_LoadUnownFont), NUM_UNOWN + 1 call Request2bpp call CloseSRAM @@ -501,7 +501,7 @@ As for `Pokedex_DrawUnownModeBG`, our edits do three things: - one, widen the interface; - two, define coordinates for the letter and cursor at new positions for **!** and **?** (and adjust the positions for S to Z to accomodate the wider interface); -- three, change some hard-coded constants to depend on `NUM_UNOWN` (this may already be done in newer versions of pokecrystal). +- three, change some hard-coded constants to depend on `NUM_UNOWN` (this was already done in pokecrystal as of July 19, 2018). ## 9. Allow the new form to be unlocked in the wild |