diff options
author | entrpntr <entrpntr@gmail.com> | 2020-04-06 14:28:33 -0400 |
---|---|---|
committer | entrpntr <entrpntr@gmail.com> | 2020-04-06 14:48:14 -0400 |
commit | 07a5cc60d0c3e37699ad5e45366cb9b093d6b7e7 (patch) | |
tree | d24dd2f6ac9f79f3247415d136b290a17766df3a /engine/items/items.asm | |
parent | d46fcef6bc2c8054f873d238e020d43b6f1774f2 (diff) |
Add unnamed.py and update for rgbds v0.4.x before continuing.
Diffstat (limited to 'engine/items/items.asm')
-rwxr-xr-x | engine/items/items.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engine/items/items.asm b/engine/items/items.asm index 428f652e..7cd1de67 100755 --- a/engine/items/items.asm +++ b/engine/items/items.asm @@ -76,7 +76,7 @@ RemoveKeyItem: RemoveNormalItem: ld h, d ld l, e -remove_item_from_bag_or_pc +remove_item_from_bag_or_pc: jp RemoveItemAndQuantity _CheckItem:: ; d251 (3:5251) @@ -117,7 +117,7 @@ CheckKeyItem: CheckNormalItem: ld h, d ld l, e -check_item_in_bag_or_pc +check_item_in_bag_or_pc: jp CheckItemWithQuantity CheckBagOrPC: ; d288 (3:5288) @@ -531,7 +531,7 @@ GetItemAttr: ; d46d (3:546d) pop hl ret -ItemAttr_ReturnCarry +ItemAttr_ReturnCarry: ld a, $1 ld [wItemAttributeParamBuffer], a scf |