SDL: diable skip frame

This commit is contained in:
Alam Ed Arias 2018-01-22 17:40:50 -05:00
parent 6ae667c78f
commit 770863d332

View file

@ -929,6 +929,9 @@ 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 1
return false;
#else
static boolean skip = false; static boolean skip = false;
if (rendermode != render_soft) if (rendermode != render_soft)
@ -948,6 +951,7 @@ static inline boolean I_SkipFrame(void)
default: default:
return false; return false;
} }
#endif
} }
// //