Fix compile errors

This commit is contained in:
Sally Coolatta 2022-03-29 15:46:02 -04:00
parent fce57a1027
commit a031998f5f
3 changed files with 3 additions and 0 deletions

View file

@ -477,6 +477,7 @@ extern tic_t mapreset;
extern UINT8 nospectategrief; extern UINT8 nospectategrief;
extern boolean thwompsactive; extern boolean thwompsactive;
extern SINT8 spbplace; extern SINT8 spbplace;
extern boolean startedInFreePlay;
extern boolean legitimateexit; extern boolean legitimateexit;
extern boolean comebackshowninfo; extern boolean comebackshowninfo;

View file

@ -6401,6 +6401,7 @@ void K_CheckSpectateStatus(void)
void K_UpdateSpectateGrief(void) void K_UpdateSpectateGrief(void)
{ {
UINT8 numingame = 0; UINT8 numingame = 0;
INT32 i;
if (nospectategrief) if (nospectategrief)
{ {

View file

@ -68,6 +68,7 @@ void K_MoveKartPlayer(player_t *player, boolean onground);
void K_CalculateBattleWanted(void); void K_CalculateBattleWanted(void);
void K_CheckBumpers(void); void K_CheckBumpers(void);
void K_CheckSpectateStatus(void); void K_CheckSpectateStatus(void);
void K_UpdateSpectateGrief(void);
// sound stuff for lua // sound stuff for lua
void K_PlayAttackTaunt(mobj_t *source); void K_PlayAttackTaunt(mobj_t *source);