diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-07-23 00:13:43 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2018-07-23 00:13:43 -0400 |
commit | a1806d6e816369ad5452c4a008d7cd5802f1ec45 (patch) | |
tree | 70a498fbe850c1beefad8b28d012c71da6a0d370 /engine/events | |
parent | bdde60c64b9268ffa1a26c1ea0434edbec4d5b21 (diff) |
Consistent routine naming convention: 'Foo' wraps '_Foo'
Diffstat (limited to 'engine/events')
-rw-r--r-- | engine/events/pokecenter_pc.asm | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engine/events/pokecenter_pc.asm b/engine/events/pokecenter_pc.asm index f1a593b5a..8f73fc41e 100644 --- a/engine/events/pokecenter_pc.asm +++ b/engine/events/pokecenter_pc.asm @@ -478,21 +478,21 @@ PlayerDepositItemMenu: push af ld a, [wBuffer2] push af - call .DepositItem_ + call .DepositItem pop af ld [wBuffer2], a pop af ld [wBuffer1], a ret -.DepositItem_: +.DepositItem: farcall _CheckTossableItem ld a, [wItemAttributeParamBuffer] and a jr z, .AskQuantity ld a, $1 ld [wItemQuantityChangeBuffer], a - jr .DepositItem + jr .ContinueDeposit .AskQuantity: ld hl, .HowManyText @@ -504,7 +504,7 @@ PlayerDepositItemMenu: pop af jr c, .DeclinedToDeposit -.DepositItem: +.ContinueDeposit: ld a, [wItemQuantityChangeBuffer] ld [wBuffer1], a ld a, [wCurItemQuantity] |