mirror of
https://github.com/pret/pokegold-spaceworld.git
synced 2026-04-24 14:59:33 -05:00
Some checks failed
CI / build (push) Has been cancelled
* Fully labelled bank09.asm, started bank03.asm * Finished labelling bank03.asm and bank0b.asm * Tying up loose ends, splitting most of the completely labelled bank dumps * Moved pokedex letter graphics out of charmap
15 lines
256 B
NASM
15 lines
256 B
NASM
INCLUDE "constants.asm"
|
|
|
|
SECTION "engine/items/update_item_description.asm", ROMX
|
|
|
|
UpdateItemDescription::
|
|
ld a, [wMenuSelection]
|
|
ld [wSelectedItem], a
|
|
hlcoord 0, 12
|
|
ld b, 4
|
|
ld c, 18
|
|
call DrawTextBox
|
|
decoord 1, 14
|
|
callfar PrintItemDescription
|
|
ret
|