Standardize capitalization of ".Jumptable"

This commit is contained in:
Rangi
2021-06-19 19:52:05 -04:00
parent 7a03fecc38
commit f59f1bdb88
9 changed files with 23 additions and 18 deletions

View File

@@ -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

View File

@@ -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