aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-01-06 15:57:35 -0500
committerClyne Sullivan <tullivan99@gmail.com>2017-01-06 15:57:35 -0500
commit81ffc208ba15e77c1771f798907ee7e2a6331b3d (patch)
tree6c7ad1011a7ea7d956a76c860d546317d4f418a3 /main.cpp
parenta77877d65dfa1ee74407d94e221f2c737fdf20dd (diff)
explosions (crashes)
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index 2e33a83..0c5a6f2 100644
--- a/main.cpp
+++ b/main.cpp
@@ -208,11 +208,13 @@ int main(int argc, char *argv[])
}
});
+ static float fpsInternal = 0;
+
// the debug loop, gets debug screen values
std::thread thDebug ([&] {
const bool &run = game::engine.shouldRun;
while (run) {
- fps = 1000 / game::time::getDeltaTime(); // TODO really?
+ fps = fpsInternal, fpsInternal = 0;
std::this_thread::sleep_for(1s);
}
});
@@ -220,6 +222,7 @@ int main(int argc, char *argv[])
// thre render loop, renders
const bool &run = game::engine.shouldRun;
while (run) {
+ fpsInternal++;
render();
game::engine.resetRender(0);
}