diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-06 15:57:35 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-01-06 15:57:35 -0500 |
commit | 81ffc208ba15e77c1771f798907ee7e2a6331b3d (patch) | |
tree | 6c7ad1011a7ea7d956a76c860d546317d4f418a3 /main.cpp | |
parent | a77877d65dfa1ee74407d94e221f2c737fdf20dd (diff) |
explosions (crashes)
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -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); } |