From 5dd6985e8f4f25422e63bef41f25d26e9342b0fb Mon Sep 17 00:00:00 2001 From: "Colton G. Rushton" Date: Fri, 17 Jun 2022 23:41:43 -0300 Subject: [PATCH] Update the footprints fix for latest pokecrystal (#940) Co-authored-by: Rangi <35663410+Rangi42@users.noreply.github.com> --- docs/design_flaws.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/docs/design_flaws.md b/docs/design_flaws.md index d11fad222..14e08bb2c 100644 --- a/docs/design_flaws.md +++ b/docs/design_flaws.md @@ -151,7 +151,9 @@ In [gfx/footprints.asm](https://github.com/pret/pokecrystal/blob/master/gfx/foot DEF footprint_top EQUS "0, 2 * LEN_1BPP_TILE" DEF footprint_bottom EQUS "2 * LEN_1BPP_TILE, 2 * LEN_1BPP_TILE" +Footprints: ; Entries correspond to Pokémon species, two apiece, 8 tops then 8 bottoms + table_width LEN_1BPP_TILE * 4, Footprints ; 001-008 top halves INCBIN "gfx/footprints/bulbasaur.1bpp", footprint_top @@ -181,6 +183,10 @@ INCBIN "gfx/footprints/wartortle.1bpp", footprint_bottom Store footprints contiguously: ```asm + +Footprints: + table_width LEN_1BPP_TILE * 4, Footprints + INCBIN "gfx/footprints/bulbasaur.1bpp" INCBIN "gfx/footprints/ivysaur.1bpp" INCBIN "gfx/footprints/venusaur.1bpp"