diff options
author | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-12 19:47:59 +0100 |
---|---|---|
committer | WBoerenkamps <wrj.boerenkamps@student.avans.nl> | 2024-12-12 19:47:59 +0100 |
commit | f7b4866811c63ae24c366d9452e53d24e504336f (patch) | |
tree | 89ffd6cd9567e05ad010fbc0a1aef664d5740a2c /src/crepe/manager/LoopTimerManager.cpp | |
parent | a464096dfff2ee4605e77852020e6a5c0fa5aa58 (diff) |
fps fix + regression test
Diffstat (limited to 'src/crepe/manager/LoopTimerManager.cpp')
-rw-r--r-- | src/crepe/manager/LoopTimerManager.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/crepe/manager/LoopTimerManager.cpp b/src/crepe/manager/LoopTimerManager.cpp index 9819632..9d24c2b 100644 --- a/src/crepe/manager/LoopTimerManager.cpp +++ b/src/crepe/manager/LoopTimerManager.cpp @@ -1,6 +1,5 @@ #include <chrono> #include <thread> - #include "../util/Log.h" #include "LoopTimerManager.h" @@ -31,7 +30,7 @@ void LoopTimerManager::update() { this->delta_time = this->maximum_delta_time; } if (this->delta_time > 0s) { - this->actual_fps = 1.0 / duration_cast<seconds>(this->delta_time).count(); + this->actual_fps = static_cast<unsigned>(1.0 / this->delta_time.count()); } else { this->actual_fps = 0; } |