diff options
author | yenatch <yenatch@gmail.com> | 2014-06-04 01:10:56 -0700 |
---|---|---|
committer | yenatch <yenatch@gmail.com> | 2014-06-04 01:10:56 -0700 |
commit | fd8804472d6f2244ae8c74bcd5017967c8cb6b7e (patch) | |
tree | b7b74d8a3275077bc5d9adfbc330f0570fe42ca0 /items | |
parent | b17553218bd5a60231a55ebc57c8ffd3523f5a99 (diff) |
Use {hl,de,bc}coord macros wherever possible.
Diffstat (limited to 'items')
-rw-r--r-- | items/item_effects.asm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/items/item_effects.asm b/items/item_effects.asm index 2a0789a50..51994ca1f 100644 --- a/items/item_effects.asm +++ b/items/item_effects.asm @@ -1408,12 +1408,12 @@ RareCandy: ; ef14 ld a, $1f call Predef - ld hl, $c4a9 + hlcoord 9, 0 ld b, 10 ld c, 9 call TextBox - ld hl, $c4bf + hlcoord 11, 1 ld bc, $0004 ld a, $28 call Predef @@ -1829,7 +1829,7 @@ Functionf1db: ; f1db (3:71db) call WaitPlaySFX pop de ld a, [CurPartyMon] ; $d109 - ld hl, $c4ab + hlcoord 11, 0 ld bc, $28 call AddNTimes ld a, $2 |