aboutsummaryrefslogtreecommitdiffstats
path: root/src/gametime.cpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-05-01 17:52:44 -0400
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-05-01 17:52:44 -0400
commit83af97c8b7bbe564a37e9d9c11a086d3b79f73d4 (patch)
treebea1e8f329163448778bef65c5cae4cf2dfe24ac /src/gametime.cpp
parentd9796041ca5876f88280ccb54560653e65e8da8a (diff)
Fixed some stuff
Diffstat (limited to 'src/gametime.cpp')
-rw-r--r--src/gametime.cpp11
1 files changed, 7 insertions, 4 deletions
diff --git a/src/gametime.cpp b/src/gametime.cpp
index 598cd4f..1005d84 100644
--- a/src/gametime.cpp
+++ b/src/gametime.cpp
@@ -3,11 +3,13 @@
#include <common.hpp>
static unsigned int tickCount = 0;
-static unsigned int deltaTime = 1;
+static float deltaTime = 1;
// millisecond timers
static unsigned int currentTime = 0;
-static unsigned int prevTime, prevPrevTime;
+static unsigned int prevTime;
+
+static float accum = 0.0f;
namespace game {
namespace time {
@@ -41,8 +43,9 @@ namespace game {
}
bool tickHasPassed(void) {
- if (prevPrevTime + MSEC_PER_TICK <= currentTime) {
- prevPrevTime = currentTime;
+ accum += deltaTime;
+ if (accum > MSEC_PER_TICK) {
+ accum = 0.0f;
return true;
}