diff options
| author | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-06-19 19:52:05 -0400 |
|---|---|---|
| committer | Rangi <remy.oukaour+rangi42@gmail.com> | 2021-06-19 19:52:05 -0400 |
| commit | f59f1bdb88297678d48bcbd01c143994cb307036 (patch) | |
| tree | 4d4d3652d0dff3401abd41de5ee461afb61d73ed /engine/events | |
| parent | 7a03fecc38ab4fe2e44525b56dabc5a05a6d8633 (diff) | |
Standardize capitalization of ".Jumptable"
Diffstat (limited to 'engine/events')
| -rw-r--r-- | engine/events/battle_tower/battle_tower.asm | 4 | ||||
| -rw-r--r-- | engine/events/pokecenter_pc.asm | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/engine/events/battle_tower/battle_tower.asm b/engine/events/battle_tower/battle_tower.asm index 785e43238..1e424f09e 100644 --- a/engine/events/battle_tower/battle_tower.asm +++ b/engine/events/battle_tower/battle_tower.asm @@ -1331,7 +1331,7 @@ Function1709bb: ; BattleTowerAction $10 jr nc, .invalid ld e, a ld d, 0 - ld hl, .jumptable + ld hl, .Jumptable add hl, de add hl, de ld a, [hli] @@ -1347,7 +1347,7 @@ Function1709bb: ; BattleTowerAction $10 call CloseSRAM ret -.jumptable: +.Jumptable: dw .NoAction dw .NoAction dw .DoAction1 diff --git a/engine/events/pokecenter_pc.asm b/engine/events/pokecenter_pc.asm index 79e02d4f4..d2e6ca83f 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 |
