Rename BATTLETOWER_NROF constants

This commit is contained in:
Remy Oukaour
2018-01-20 12:05:16 -05:00
parent b071dd364f
commit 8127d1fbcf
7 changed files with 15 additions and 15 deletions

View File

@@ -213,7 +213,7 @@ BattleTower_ExecuteJumptable: ; 8b25b
BattleTower_CheckPartyLengthIs3: ; 8b2bb
ld a, [PartyCount]
cp BATTLETOWER_NROFPKMNS
cp BATTLETOWER_PARTY_SIZE
ret
; 8b2c1
@@ -235,13 +235,13 @@ BattleTower_CheckPartyHasThreeMonsThatAreNotEggs: ; 8b2c1
cp b
ret z
ld a, b
cp BATTLETOWER_NROFPKMNS
cp BATTLETOWER_PARTY_SIZE
ret
; 8b2da
Function_PartyCountEq3: ; 8b2da
ld a, [PartyCount]
cp BATTLETOWER_NROFPKMNS
cp BATTLETOWER_PARTY_SIZE
ret z
scf
ret