You've already forked pokecrystal-board
mirror of
https://gitlab.com/xCrystal/pokecrystal-board.git
synced 2025-12-11 05:02:16 -08:00
'rept' is not indented
This commit is contained in:
@@ -2404,10 +2404,10 @@ GetFailureResultText: ; 350e4
|
||||
ld hl, wCurDamage
|
||||
ld a, [hli]
|
||||
ld b, [hl]
|
||||
rept 3
|
||||
rept 3
|
||||
srl a
|
||||
rr b
|
||||
endr
|
||||
endr
|
||||
ld [hl], b
|
||||
dec hl
|
||||
ld [hli], a
|
||||
|
||||
@@ -53,14 +53,14 @@ AnimateMon_Unused: ; d003a
|
||||
; d0042
|
||||
|
||||
pokeanim: MACRO
|
||||
rept _NARG
|
||||
rept _NARG
|
||||
; Workaround for a bug where macro args can't come after the start of a symbol
|
||||
if !DEF(\1_POKEANIM)
|
||||
\1_POKEANIM EQUS "PokeAnim_\1_"
|
||||
endc
|
||||
db (\1_POKEANIM - PokeAnim_SetupCommands) / 2
|
||||
shift
|
||||
endr
|
||||
endr
|
||||
db (PokeAnim_Finish_ - PokeAnim_SetupCommands) / 2
|
||||
ENDM
|
||||
|
||||
|
||||
@@ -806,10 +806,10 @@ HeavyBallMultiplier:
|
||||
ld b, h
|
||||
ld c, l
|
||||
|
||||
rept 4
|
||||
rept 4
|
||||
srl b
|
||||
rr c
|
||||
endr
|
||||
endr
|
||||
call .subbc
|
||||
|
||||
srl b
|
||||
@@ -2529,9 +2529,9 @@ BattleRestorePP: ; f652
|
||||
push hl
|
||||
push de
|
||||
push bc
|
||||
rept NUM_MOVES + 2 ; wBattleMonPP - wBattleMonMoves
|
||||
rept NUM_MOVES + 2 ; wBattleMonPP - wBattleMonMoves
|
||||
inc de
|
||||
endr
|
||||
endr
|
||||
ld bc, MON_PP - MON_MOVES
|
||||
add hl, bc
|
||||
ld a, [hl]
|
||||
|
||||
@@ -115,20 +115,20 @@ GeneratePartyMonStats: ; d906
|
||||
and a
|
||||
jr nz, .randomlygeneratemoves
|
||||
ld de, wEnemyMonMoves
|
||||
rept NUM_MOVES + -1
|
||||
rept NUM_MOVES + -1
|
||||
ld a, [de]
|
||||
inc de
|
||||
ld [hli], a
|
||||
endr
|
||||
endr
|
||||
ld a, [de]
|
||||
ld [hl], a
|
||||
jr .next
|
||||
|
||||
.randomlygeneratemoves
|
||||
xor a
|
||||
rept NUM_MOVES + -1
|
||||
rept NUM_MOVES + -1
|
||||
ld [hli], a
|
||||
endr
|
||||
endr
|
||||
ld [hl], a
|
||||
ld [wBuffer1], a
|
||||
predef FillMoves
|
||||
@@ -220,7 +220,7 @@ endr
|
||||
call FillPP
|
||||
pop de
|
||||
pop hl
|
||||
rept 4
|
||||
rept NUM_MOVES
|
||||
inc de
|
||||
endr
|
||||
|
||||
|
||||
Reference in New Issue
Block a user