diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-07-19 01:16:24 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-07-19 01:16:24 -0400 |
commit | e3861141ab67a48fa8f476c36ff8d72e963bd203 (patch) | |
tree | b37fb690d82d7a4d9a878596cceaf3b70a9388d2 | |
parent | c4a6592778645f940bd156b05f76470ed470b5d0 (diff) |
PR #542
-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 |