diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-08 16:20:15 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2020-07-10 20:03:46 -0400 |
commit | c086de0c986330b09cd5e9fa384b950107ee4955 (patch) | |
tree | 6854c5ea9c5311b677bfbcae0616f0979b754060 /engine/items | |
parent | 6ca82e5c86279258bfd4b21195d4521f26082fd4 (diff) |
Use const_skip and const_next macros for brevity
Diffstat (limited to 'engine/items')
-rw-r--r-- | engine/items/items.asm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engine/items/items.asm b/engine/items/items.asm index ef0f10dda..a08f76d31 100644 --- a/engine/items/items.asm +++ b/engine/items/items.asm @@ -570,7 +570,7 @@ GetItemPrice: ; Return the price of wCurItem in de. push hl push bc - ld a, ITEMATTR_PRICE + ld a, ITEMATTR_PRICE_LO call GetItemAttr ld e, a ld a, ITEMATTR_PRICE_HI |