mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Bad function declaration
This commit is contained in:
parent
5ffba0a678
commit
358cc9f215
2 changed files with 3 additions and 3 deletions
|
|
@ -581,7 +581,7 @@ void K_RetireBots(void)
|
|||
continue;
|
||||
}
|
||||
|
||||
bot = players[i];
|
||||
bot = &players[i];
|
||||
|
||||
if (bot->spectator)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
||||
|
||||
/*--------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue