shithub: pokecrystal

ref: c01409be5a9930d6f0687ce53c1c898e1855c884
dir: /home/sprite_updates.asm/

View raw version
DisableSpriteUpdates::
	xor a
	ldh [hMapAnims], a
	ld a, [wVramState]
	res 0, a
	ld [wVramState], a
	ld a, $0
	ld [wSpriteUpdatesEnabled], a
	ret

EnableSpriteUpdates::
	ld a, $1
	ld [wSpriteUpdatesEnabled], a
	ld a, [wVramState]
	set 0, a
	ld [wVramState], a
	ld a, $1
	ldh [hMapAnims], a
	ret