Browse Source

Fixed love.timer.getFPS and love.timer.getAverageDelta during the first second of runtime

Alex Szpakowski 12 years ago
parent
commit
b9533d5cb8
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/modules/timer/sdl/Timer.cpp

+ 2 - 2
src/modules/timer/sdl/Timer.cpp

@@ -38,8 +38,8 @@ namespace sdl
 {
 
 Timer::Timer()
-	: currTime(0)
-	, prevFpsUpdate(0)
+	: currTime(getMicroTime())
+	, prevFpsUpdate(currTime)
 	, fps(0)
 	, averageDelta(0)
 	, fpsUpdateFrequency(1)