You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-12-11 05:02:16 -08:00
Consistent code formatting: no redundant as and spaces after commas
This commit is contained in:
@@ -77,9 +77,9 @@ CheckPartyMove: ; c742
|
||||
ld a, [hl]
|
||||
and a
|
||||
jr z, .no
|
||||
cp a, -1
|
||||
cp -1
|
||||
jr z, .no
|
||||
cp a, EGG
|
||||
cp EGG
|
||||
jr z, .next
|
||||
|
||||
ld bc, PARTYMON_STRUCT_LENGTH
|
||||
@@ -510,7 +510,7 @@ CheckDirection: ; c9cb
|
||||
|
||||
; Get player direction
|
||||
ld a, [PlayerDirection]
|
||||
and a, %00001100 ; bits 2 and 3 contain direction
|
||||
and %00001100 ; bits 2 and 3 contain direction
|
||||
rrca
|
||||
rrca
|
||||
ld e, a
|
||||
|
||||
Reference in New Issue
Block a user