diff --git a/src/sdl/i_video.c b/src/sdl/i_video.c index 1bda0e1804fde86a55b897dad032d0ad8bc2cb4e..64e1f537ff6e3429847d9fb724bd455117098d86 100644 --- a/src/sdl/i_video.c +++ b/src/sdl/i_video.c @@ -929,6 +929,9 @@ void I_UpdateNoBlit(void) // from PrBoom's src/SDL/i_video.c static inline boolean I_SkipFrame(void) { +#if 1 + return false; +#else static boolean skip = false; if (rendermode != render_soft) @@ -948,6 +951,7 @@ static inline boolean I_SkipFrame(void) default: return false; } +#endif } //