[Change] Lowered threshold to skip frames (now under 4FPS skips).

This commit is contained in:
Allanis 2013-06-22 21:50:11 +01:00
parent 7fd06bd265
commit 9cfb07eb59

View File

@ -298,7 +298,7 @@ const double fps_min = 1./50.0;
static void update_all(void) {
double tmpdt;
if(dt > 1.) { /* Slow timers down and rerun calculations */
if(dt > 0.25) { /* Slow timers down and rerun calculations */
pause_delay((unsigned int)dt*1000.);
return;
}