shithub: pokecrystal

Download patch

ref: 99f26a60973b33185d46720edfad8067c35e1a5a
parent: 95c0c31c8ff8e1149a9b959e04ea27e337e929b4
author: Remy Oukaour <remy.oukaour@gmail.com>
date: Wed Jan 17 20:28:51 EST 2018

Compute wc7e8 size

--- a/home/map.asm
+++ b/home/map.asm
@@ -2,8 +2,8 @@
 
 Clearwc7e8:: ; 210f
 	ld hl, wc7e8
-	ld bc, 24
-	ld a, $0
+	ld bc, wc7e8_End - wc7e8
+	ld a, 0
 	call ByteFill
 	ret
 ; 211b
--- a/wram.asm
+++ b/wram.asm
@@ -877,7 +877,8 @@
 ENDU ; c7e8
 ENDU ; c7e8
 
-wc7e8:: ds 24 ; ????
+wc7e8:: ds 24
+wc7e8_End::
 
 
 SECTION "Overworld Map", WRAM0