shithub: pokecrystal

ref: 57a00f14d6997e0dbbf8070ecdc44f55f7ac192c
dir: /engine/tilesets/mapgroup_roofs.asm/

View raw version
LoadMapGroupRoof::
	ld a, [wMapGroup]
	ld e, a
	ld d, 0
	ld hl, MapGroupRoofs
	add hl, de
	ld a, [hl]
	cp -1
	ret z
	ld hl, Roofs
	ld bc, ROOF_LENGTH tiles
	call AddNTimes
	ld de, vTiles2 tile $0a
	ld bc, ROOF_LENGTH tiles
	call CopyBytes
	ret

INCLUDE "data/maps/roofs.asm"