From e57782523b2944cde6918569c3ed5c313322dca0 Mon Sep 17 00:00:00 2001
From: Allanis <allanis@saracraft.net>
Date: Mon, 17 Mar 2014 02:08:43 +0000
Subject: [PATCH] [Fix] I'm confused, but 2x speed works now. :S

---
 src/lephisto.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/lephisto.c b/src/lephisto.c
index fa00116..28e0a6e 100644
--- a/src/lephisto.c
+++ b/src/lephisto.c
@@ -478,7 +478,7 @@ static const double fps_min = 1./50.0;
 static void update_all(void) {
   double tmpdt;
 
-  if(cur_dt > 0.25*dt_mod) { /* Slow timers down and rerun calculations */
+  if(cur_dt > 0.25/**dt_mod*/) { /* Slow timers down and rerun calculations */
     pause_delay((unsigned int)cur_dt*1000.);
     return;
   }