pokecrystal-board/engine/items/update_item_description.asm

14 lines
222 B
NASM
Raw Permalink Normal View History

UpdateItemDescription:
2018-01-23 14:39:09 -08:00
ld a, [wMenuSelection]
ld [wCurSpecies], a
hlcoord 0, 12
ld b, 4
ld c, SCREEN_WIDTH - 2
call Textbox1bpp
2018-01-23 14:39:09 -08:00
ld a, [wMenuSelection]
cp -1
ret z
decoord 1, 14
farcall PrintItemDescription
ret