[Change] Lowered threshold to skip frames (now under 4FPS skips).
This commit is contained in:
parent
7fd06bd265
commit
9cfb07eb59
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user