summaryrefslogtreecommitdiff
path: root/engine/items/update_item_description.asm
blob: da56732a232a8a57f788c185a996bdbbb9ce5438 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
UpdateItemDescription:
	ld a, [wMenuSelection]
	ld [wCurSpecies], a
	hlcoord 0, 12
	ld b, 4
	ld c, SCREEN_WIDTH - 2
	call Textbox
	ld a, [wMenuSelection]
	cp -1
	ret z
	decoord 1, 14
	farcall PrintItemDescription
	ret