diff options
author | Thomas Winwood <twwinwood@gmail.com> | 2018-06-10 00:21:34 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-10 00:21:34 +0100 |
commit | 17a4d0540acc00e3f5ad260009115eb36e72b7d2 (patch) | |
tree | a9020657db925e5e47a32e855ddfd8478c222f56 | |
parent | ff1c9f36daa855d7d7253a157371b0a79244870b (diff) |
Fix small bug
-rw-r--r-- | docs/design_flaws.md | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/docs/design_flaws.md b/docs/design_flaws.md index a7100fc7f..55ec11754 100644 --- a/docs/design_flaws.md +++ b/docs/design_flaws.md @@ -272,11 +272,12 @@ Modify `Pokedex_LoadAnyFootprint`: ```diff - push hl -- ld e, l -- ld d, h -- ld hl, vTiles2 tile $62 + ld e, l + ld d, h + ld hl, vTiles2 tile $62 - lb bc, BANK(Footprints), 2 -- call Request1bpp ++ lb bc, BANK(Footprints), 4 + call Request1bpp - pop hl - - ; Whoever was editing footprints forgot to fix their @@ -284,12 +285,11 @@ Modify `Pokedex_LoadAnyFootprint`: - ld de, 8 tiles - add hl, de - - ld e, l - ld d, h - ld hl, vTiles2 tile $64 +- ld e, l +- ld d, h +- ld hl, vTiles2 tile $64 - lb bc, BANK(Footprints), 2 -+ lb bc, BANK(Footprints), 4 - call Request1bpp +- call Request1bpp ``` |