shithub: pokecrystal

ref: 770d2fc4cb3368b237d8ba33dcd6e5d9f0740863
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