shithub: pokered

ref: 6a1e077d2d20904c19b80a6baa455c8c9d7ce1f1
dir: /engine/get_bag_item_quantity.asm/

View raw version
GetQuantityOfItemInBag:
; In: b = item ID
; Out: b = how many of that item are in the bag
	call GetPredefRegisters
	ld hl, wNumBagItems
.loop
	inc hl
	ld a, [hli]
	cp $ff
	jr z, .notInBag
	cp b
	jr nz, .loop
	ld a, [hl]
	ld b, a
	ret
.notInBag
	ld b, 0
	ret