diff options
author | PikalaxALT <pikalaxalt@gmail.com> | 2021-03-16 16:41:28 -0400 |
---|---|---|
committer | PikalaxALT <pikalaxalt@gmail.com> | 2021-03-16 16:41:28 -0400 |
commit | 783488aae5a4421bdca249a18458831704afbab0 (patch) | |
tree | 9e597f60b2b6552bb46ad5b8c5e76d60dbcafc0b /src/battle_controller_opponent.c | |
parent | fa6b2c46159b8b69097dac3e068fafaf3a396236 (diff) |
Name nullsubs in battle ctlrs
Diffstat (limited to 'src/battle_controller_opponent.c')
-rw-r--r-- | src/battle_controller_opponent.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/battle_controller_opponent.c b/src/battle_controller_opponent.c index 1921dd61e..7d34dd3d3 100644 --- a/src/battle_controller_opponent.c +++ b/src/battle_controller_opponent.c @@ -153,7 +153,7 @@ static void (*const sOpponentBufferCommands[CONTROLLER_CMDS_COUNT])(void) = // not used static const u8 gUnknown_8250B18[] = { 0xB0, 0xB0, 0xC8, 0x98, 0x28, 0x28, 0x28, 0x20 }; -static void nullsub_17(void) +static void OpponentDummy(void) { } @@ -1638,7 +1638,7 @@ static void OpponentHandleIntroTrainerBallThrow(void) if (gBattleSpritesDataPtr->healthBoxesData[gActiveBattler].partyStatusSummaryShown) gTasks[gBattlerStatusSummaryTaskId[gActiveBattler]].func = Task_HidePartyStatusSummary; gBattleSpritesDataPtr->animationData->healthboxSlideInStarted = TRUE; - gBattlerControllerFuncs[gActiveBattler] = nullsub_17; + gBattlerControllerFuncs[gActiveBattler] = OpponentDummy; } static void SpriteCB_FreeOpponentSprite(struct Sprite *sprite) |