Fix small bug

This commit is contained in:
Thomas Winwood
2018-06-10 00:21:34 +01:00
committed by GitHub
parent ff1c9f36da
commit 17a4d0540a

View File

@@ -272,11 +272,12 @@ Modify `Pokedex_LoadAnyFootprint`:
```diff ```diff
- push hl - push hl
- ld e, l ld e, l
- ld d, h ld d, h
- ld hl, vTiles2 tile $62 ld hl, vTiles2 tile $62
- lb bc, BANK(Footprints), 2 - lb bc, BANK(Footprints), 2
- call Request1bpp + lb bc, BANK(Footprints), 4
call Request1bpp
- pop hl - pop hl
- -
- ; Whoever was editing footprints forgot to fix their - ; Whoever was editing footprints forgot to fix their
@@ -284,12 +285,11 @@ Modify `Pokedex_LoadAnyFootprint`:
- ld de, 8 tiles - ld de, 8 tiles
- add hl, de - add hl, de
- -
ld e, l - ld e, l
ld d, h - ld d, h
ld hl, vTiles2 tile $64 - ld hl, vTiles2 tile $64
- lb bc, BANK(Footprints), 2 - lb bc, BANK(Footprints), 2
+ lb bc, BANK(Footprints), 4 - call Request1bpp
call Request1bpp
``` ```