Skip to content
Snippets Groups Projects
Commit 06961a8f authored by SteelT's avatar SteelT
Browse files

Merge branch 'no-frameskip' into 'next'

Don't skip frames when connecting or paused

See merge request STJr/SRB2!489
parents f0e16cad 8f05d759
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
//
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment