diff options
author | yenatch <yenatch@gmail.com> | 2017-12-10 01:47:10 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-10 01:47:10 -0500 |
commit | 94c7def4883fbdbcd3987a067443a2069b8bb610 (patch) | |
tree | 171c67509afba62571266bd6bebbfdb829d2a876 /misc/mobile_42.asm | |
parent | 89b9292db0898f8ad2b6ea8513a3190762eb58c8 (diff) | |
parent | d554b997c590825f030bd1be71989653b16a2ae0 (diff) |
Merge pull request #409 from roukaour/master
Document constants with comments, actual names, and more thorough usage
Diffstat (limited to 'misc/mobile_42.asm')
-rw-r--r-- | misc/mobile_42.asm | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/misc/mobile_42.asm b/misc/mobile_42.asm index d08bc8882..77cf9ac54 100644 --- a/misc/mobile_42.asm +++ b/misc/mobile_42.asm @@ -83,7 +83,7 @@ Function10804d: ; 10804d mobiletradeanim_end RunMobileTradeAnim_Frontpics: ; 10805b - ld hl, wTradeAnimPointer + ld hl, wTradeAnimAddress ld [hl], e inc hl ld [hl], d @@ -113,7 +113,7 @@ RunMobileTradeAnim_Frontpics: ; 10805b ; 108089 RunMobileTradeAnim_NoFrontpics: ; 108089 - ld hl, wTradeAnimPointer + ld hl, wTradeAnimAddress ld [hl], e inc hl ld [hl], d @@ -411,7 +411,7 @@ MobileTradeAnim_Next: ; 1082b2 ; 1082b7 GetMobileTradeAnimByte: ; 1082b7 - ld hl, wTradeAnimPointer + ld hl, wTradeAnimAddress ld e, [hl] inc hl ld d, [hl] @@ -1313,7 +1313,7 @@ MobileTradeAnim_DisplayEggData .EggTemplate: ; 108a1d db "タマゴ" next "おや/?????" - next "<ID>№·?????" + next "<ID>№<DOT>?????" db "@" ; 108a33 @@ -1353,10 +1353,10 @@ MobileTradeAnim_LoadMonTemplate: ; 108a5b ; 108a79 .MonTemplate: ; 108a79 - db "─ №·" + db "─ №<DOT>" next "" next "おや/" - next "<ID>№·" + next "<ID>№<DOT>" db "@" ; 108a87 |