ref: 5dd6985e8f4f25422e63bef41f25d26e9342b0fb
parent: 51b0a3fea3085b7c0014c7c34434fa3867421c2d
author: Colton G. Rushton <colton51919@gmail.com>
date: Fri Jun 17 19:41:43 EDT 2022
Update the footprints fix for latest pokecrystal (#940) Co-authored-by: Rangi <35663410+Rangi42@users.noreply.github.com>
--- a/docs/design_flaws.md
+++ b/docs/design_flaws.md
@@ -151,7 +151,9 @@
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 @@
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"