diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2024-12-13 20:49:32 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2024-12-13 20:49:32 +0100 |
commit | b25d9438b3849efd0a6b6034d238eb36e23d6a5c (patch) | |
tree | 75973b75580fbc708ad6d6361deab587c7758921 /src/crepe/manager/LoopTimerManager.cpp | |
parent | ded2f0d56d95edffb97830f406bce9e1ec4293d1 (diff) | |
parent | 8f20aac54aed1a060d59d5169276ef3ed33a8dc9 (diff) |
Merge branch 'master' of github.com:lonkaars/crepe into jaro/mediator_concealing_scene
Diffstat (limited to 'src/crepe/manager/LoopTimerManager.cpp')
-rw-r--r-- | src/crepe/manager/LoopTimerManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/manager/LoopTimerManager.cpp b/src/crepe/manager/LoopTimerManager.cpp index 9819632..a6e4788 100644 --- a/src/crepe/manager/LoopTimerManager.cpp +++ b/src/crepe/manager/LoopTimerManager.cpp @@ -31,7 +31,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; } |