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