whitespace cleanup

This commit is contained in:
Seth Barberee 2022-02-20 09:09:52 -08:00
parent 0829319ee5
commit 2d6f3afbd4
3 changed files with 0 additions and 5 deletions

View File

@ -11,8 +11,6 @@
#include "number_util.h"
#include "status_checks_1.h"
u32 EvaluateItem(struct DungeonEntity *targetPokemon, struct ItemSlot *item, u32 itemTargetFlags)
{
struct DungeonEntityData *pokemonData = targetPokemon->entityData;

View File

@ -428,4 +428,3 @@ void TargetThrownItem(struct DungeonEntity *pokemon, struct DungeonEntity *targe
gNumPotentialTargets++;
}
}

View File

@ -1,7 +1,6 @@
#include "global.h"
#include "number_util.h"
s32 RoundUpFixedPoint(s32 fixedPointNumber)
{
if ((s16) fixedPointNumber == 0)
@ -21,4 +20,3 @@ s32 RoundUpFixedPoint(s32 fixedPointNumber)
return (s16) fixedPointNumber;
}
}