Browse Source

Fixed love.timer.step / dt

Alex Szpakowski 12 years ago
parent
commit
ce71bc0847
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/modules/timer/sdl/Timer.h

+ 3 - 3
src/modules/timer/sdl/Timer.h

@@ -64,9 +64,9 @@ public:
 private:
 
 	// Frame delta vars.
-	Uint32 currTime;
-	Uint32 prevTime;
-	Uint32 prevFpsUpdate;
+	double currTime;
+	double prevTime;
+	double prevFpsUpdate;
 
 	// Updated with a certain frequency.
 	int fps;