Don't skip frames when connecting or paused

This commit is contained in:
wolfy852 2019-05-08 09:36:37 -05:00
parent e394f41c52
commit 8f05d75926
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;
} }
// //