Resolve #428: Use HIGH(X) and LOW(X) instead of X / $100 and X % $100 or X >> 8 and X & $ff

This commit is contained in:
Remy Oukaour
2017-12-25 13:40:10 -05:00
parent da2b01a36c
commit e34e68095d
71 changed files with 435 additions and 398 deletions

View File

@@ -587,10 +587,10 @@ PlacePartyMonMobileBattleSelection: ; 50307
PartyMenuCheckEgg: ; 50389
ld a, PartySpecies % $100
ld a, LOW(PartySpecies)
add b
ld e, a
ld a, PartySpecies / $100
ld a, HIGH(PartySpecies)
adc 0
ld d, a
ld a, [de]