Bad function declaration

This commit is contained in:
Sally Coolatta 2022-04-02 14:54:23 -04:00
parent 5ffba0a678
commit 358cc9f215
2 changed files with 3 additions and 3 deletions

View file

@ -581,7 +581,7 @@ void K_RetireBots(void)
continue;
}
bot = players[i];
bot = &players[i];
if (bot->spectator)
{

View file

@ -106,13 +106,13 @@ void K_IncreaseBotDifficulty(player_t *bot);
/*--------------------------------------------------
void K_RetireBots(player_t *bot);
void K_RetireBots(void);
Replaces PF_NOCONTEST bots, by refreshing their difficulty
and changing their skin.
--------------------------------------------------*/
void K_RetireBots(player_t *bot);
void K_RetireBots(void);
/*--------------------------------------------------