Merge branch 'dontskipframes' into 'master'

Don't skip frames in software mode

See merge request KartKrew/Kart-Public!103
This commit is contained in:
colette 2019-03-10 13:29:10 -04:00
commit ef0130f951

View file

@ -1327,6 +1327,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)
@ -1345,6 +1346,8 @@ static inline boolean I_SkipFrame(void)
default:
return false;
}
#endif
return false;
}
//