shithub: pokecrystal

Download patch

ref: 17a4d0540acc00e3f5ad260009115eb36e72b7d2
parent: ff1c9f36daa855d7d7253a157371b0a79244870b
author: Thomas Winwood <twwinwood@gmail.com>
date: Sat Jun 9 20:21:34 EDT 2018

Fix small bug

--- a/docs/design_flaws.md
+++ b/docs/design_flaws.md
@@ -272,11 +272,12 @@
 
 ```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 @@
 -	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
 ```