pokered/home/reload_sprites.asm

20 lines
418 B
NASM
Raw Permalink Normal View History

; Copy the current map's sprites' tile patterns to VRAM again after they have
; been overwritten by other tile patterns.
ReloadMapSpriteTilePatterns::
ld hl, wFontLoaded
ld a, [hl]
push af
2024-09-24 03:51:44 +00:00
res BIT_FONT_LOADED, [hl]
push hl
xor a
ld [wSpriteSetID], a
call DisableLCD
farcall InitMapSprites
call EnableLCD
pop hl
pop af
ld [hl], a
call LoadPlayerSpriteGraphics
call LoadFontTilePatterns
jp UpdateSprites