summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorExpoSeed <>2020-07-27 21:22:16 -0500
committerExpoSeed <>2020-07-27 21:22:16 -0500
commitb401e2eb86dba8a48c12fec75c2201de7fb1ec63 (patch)
tree63b9e1cce193b9f71b3ae27f5905030940740aea /src
parent71dc5edf2e590c85b5874f82dde3b418e5769450 (diff)
Fix naming style of function
Diffstat (limited to 'src')
-rw-r--r--src/battle_util.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/battle_util.c b/src/battle_util.c
index a579f7edd..89fe95fbc 100644
--- a/src/battle_util.c
+++ b/src/battle_util.c
@@ -259,7 +259,7 @@ void ResetSentPokesToOpponentValue(void)
gSentPokesToOpponent[(i & BIT_FLANK) >> 1] = bits;
}
-void OpponentSwitchInResetSentPokesToOpponent(u8 battler)
+void OpponentSwitchInResetSentPokesToOpponentValue(u8 battler)
{
s32 i = 0;
u32 bits = 0;
@@ -283,7 +283,7 @@ void UpdateSentPokesToOpponentValue(u8 battler)
{
if (GetBattlerSide(battler) == B_SIDE_OPPONENT)
{
- OpponentSwitchInResetSentPokesToOpponent(battler);
+ OpponentSwitchInResetSentPokesToOpponentValue(battler);
}
else
{
@@ -1250,7 +1250,7 @@ bool8 HandleFaintedMonActions(void)
gBattleStruct->faintedActionsState = 3;
break;
case 2:
- OpponentSwitchInResetSentPokesToOpponent(gBattlerFainted);
+ OpponentSwitchInResetSentPokesToOpponentValue(gBattlerFainted);
if (++gBattleStruct->faintedActionsBattlerId == gBattlersCount)
gBattleStruct->faintedActionsState = 3;
else