diff options
author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-06-19 19:52:07 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-06-19 19:52:07 -0400 |
commit | 3eda24dc473813e44e55afb1cf8f57a354fb7a10 (patch) | |
tree | 28350b5a19f2dfdd95ed045ed256095516d4bfbe /engine/events | |
parent | a9dd70cc35acee8b5eb701da66d82ba74a1491c2 (diff) |
Standardize capitalization of ".Jumptable"
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 79e02d4f..d2e6ca83 100644 --- a/engine/events/pokecenter_pc.asm +++ b/engine/events/pokecenter_pc.asm @@ -4,7 +4,7 @@ const PCPC_BEFORE_HOF ; 1 const PCPC_POSTGAME ; 2 - ; PokemonCenterPC.JumpTable indexes + ; PokemonCenterPC.Jumptable indexes const_def const PCPCITEM_PLAYERS_PC ; 0 const PCPCITEM_BILLS_PC ; 1 @@ -30,7 +30,7 @@ PokemonCenterPC: call DoNthMenu jr c, .shutdown ld a, [wMenuSelection] - ld hl, .JumpTable + ld hl, .Jumptable call MenuJumptable jr nc, .loop @@ -51,9 +51,9 @@ PokemonCenterPC: db 0 ; items dw .WhichPC dw PlaceNthMenuStrings - dw .JumpTable + dw .Jumptable -.JumpTable: +.Jumptable: ; entries correspond to PCPCITEM_* constants dw PlayersPC, .String_PlayersPC dw BillsPC, .String_BillsPC |