Merge branch 'no-frameskip' into 'next'

Don't skip frames when connecting or paused

See merge request STJr/SRB2!489
This commit is contained in:
Steel Titanium 2019-05-13 00:35:11 -04:00
commit 06961a8f5e
1 changed files with 3 additions and 0 deletions

View File

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