0
0
Fork 0
mirror of https://git.do.srb2.org/STJr/SRB2.git synced 2025-04-18 08:21:58 +00:00

Merge branch 'no-frameskip' into 'next'

Don't skip frames when connecting or paused

See merge request 
This commit is contained in:
Steel Titanium 2019-05-13 00:35:11 -04:00
commit 06961a8f5e

View file

@ -984,6 +984,7 @@ void I_UpdateNoBlit(void)
// from PrBoom's src/SDL/i_video.c
static inline boolean I_SkipFrame(void)
{
#if 0
static boolean skip = false;
if (rendermode != render_soft)
@ -1003,6 +1004,8 @@ static inline boolean I_SkipFrame(void)
default:
return false;
}
#endif
return false;
}
//