summaryrefslogtreecommitdiff
path: root/src/battle_controller_wally.c
diff options
context:
space:
mode:
authorDiegoisawesome <Diegoisawesome@users.noreply.github.com>2019-03-05 14:17:44 -0600
committerGitHub <noreply@github.com>2019-03-05 14:17:44 -0600
commit00814740183a670a2b122d9b3d708b97c5d2df4e (patch)
tree4d344d7e34c55658be30203e2c6d8ddf1bc36cef /src/battle_controller_wally.c
parent842e3c8b424054319cce899f07352bd5f521c156 (diff)
parente79b6f747b2095bf78336f4b6e6998d818ce8400 (diff)
Merge pull request #606 from DizzyEggg/angery
Fix Controllers end command function names
Diffstat (limited to 'src/battle_controller_wally.c')
-rw-r--r--src/battle_controller_wally.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/battle_controller_wally.c b/src/battle_controller_wally.c
index a196f8a44..7f4fe4761 100644
--- a/src/battle_controller_wally.c
+++ b/src/battle_controller_wally.c
@@ -92,7 +92,7 @@ static void WallyHandleBattleAnimation(void);
static void WallyHandleLinkStandbyMsg(void);
static void WallyHandleResetActionMoveSelection(void);
static void WallyHandleCmd55(void);
-static void SpriteCB_Null8(void);
+static void WallyCmdEnd(void);
static void WallyBufferRunCommand(void);
static void WallyBufferExecCompleted(void);
@@ -161,7 +161,7 @@ static void (*const sWallyBufferCommands[CONTROLLER_CMDS_COUNT])(void) =
WallyHandleLinkStandbyMsg,
WallyHandleResetActionMoveSelection,
WallyHandleCmd55,
- SpriteCB_Null8
+ WallyCmdEnd
};
static void SpriteCB_Null7(void)
@@ -1559,6 +1559,6 @@ static void WallyHandleCmd55(void)
gBattlerControllerFuncs[gActiveBattler] = sub_80587B0;
}
-static void SpriteCB_Null8(void)
+static void WallyCmdEnd(void)
{
}