mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-03-26 04:51:43 +00:00
Fix unused function error
This commit is contained in:
parent
583d6c46f9
commit
4698130321
1 changed files with 3 additions and 3 deletions
|
|
@ -1325,7 +1325,7 @@ void I_UpdateNoBlit(void)
|
|||
//
|
||||
// Returns true if it thinks we can afford to skip this frame
|
||||
// from PrBoom's src/SDL/i_video.c
|
||||
static inline boolean I_SkipFrame(void)
|
||||
/*static inline boolean I_SkipFrame(void)
|
||||
{
|
||||
static boolean skip = false;
|
||||
|
||||
|
|
@ -1340,12 +1340,12 @@ static inline boolean I_SkipFrame(void)
|
|||
if (!paused)
|
||||
return false;
|
||||
/* FALLTHRU */
|
||||
case GS_WAITINGPLAYERS:
|
||||
/*case GS_WAITINGPLAYERS:
|
||||
return skip; // Skip odd frames
|
||||
default:
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}*/
|
||||
|
||||
//
|
||||
// I_FinishUpdate
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue