Skip to content
Snippets Groups Projects
Commit 8f05d759 authored by wolfs's avatar wolfs
Browse files

Don't skip frames when connecting or paused

parent e394f41c
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