diff options
author | Kaz <kazbloxmc@gmail.com> | 2020-09-19 13:37:24 -0400 |
---|---|---|
committer | Kaz <kazbloxmc@gmail.com> | 2020-09-19 17:12:25 -0400 |
commit | 847878eae9a9f0ac4a722c27c1cdf1a2d3ff1d67 (patch) | |
tree | 544803257b109fc13e78e7549f6cb95e25ed388e /src/daycare.c | |
parent | 1404cf3330b49e217c317602194e52d9c49bb12b (diff) |
battle_gfx_sfx_util.c: Very annoying fakematch fix.
daycare.c: -g eliminates the need for the brace hack.
battle_transition.c: Fix Phase2_Ripple_Func2...?
Diffstat (limited to 'src/daycare.c')
-rw-r--r-- | src/daycare.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/daycare.c b/src/daycare.c index 69043a513..1490d3742 100644 --- a/src/daycare.c +++ b/src/daycare.c @@ -615,10 +615,7 @@ static u8 GetEggMoves(struct Pokemon *pokemon, u16 *eggMoves) for (i = 0; i < EGG_MOVES_ARRAY_COUNT; i++) { if (gEggMoves[eggMoveIdx + i] > EGG_MOVES_SPECIES_OFFSET) - { - // TODO: the curly braces around this if statement are required for a matching build. break; - } eggMoves[i] = gEggMoves[eggMoveIdx + i]; numEggMoves++; |