aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/manager/LoopTimerManager.cpp
diff options
context:
space:
mode:
authorJAROWMR <jarorutjes07@gmail.com>2024-12-12 18:37:27 +0100
committerJAROWMR <jarorutjes07@gmail.com>2024-12-12 18:37:27 +0100
commitab1423f48d82ba9b0619ec107639a80773edbfc2 (patch)
treefcf4af55aa56b2de19e87e5246888e1af9f4f527 /src/crepe/manager/LoopTimerManager.cpp
parent15bb400deafa1ea4fea1ff11e835f103fa82090f (diff)
reverted
Diffstat (limited to 'src/crepe/manager/LoopTimerManager.cpp')
-rw-r--r--src/crepe/manager/LoopTimerManager.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/manager/LoopTimerManager.cpp b/src/crepe/manager/LoopTimerManager.cpp
index 4a3df0a..9819632 100644
--- a/src/crepe/manager/LoopTimerManager.cpp
+++ b/src/crepe/manager/LoopTimerManager.cpp
@@ -80,8 +80,8 @@ duration_t LoopTimerManager::get_lag() const {
return this->elapsed_time - this->elapsed_fixed_time;
}
-float LoopTimerManager::get_scaled_fixed_delta_time() const {
- return (this->fixed_delta_time * this->time_scale).count();
+duration_t LoopTimerManager::get_scaled_fixed_delta_time() const {
+ return this->fixed_delta_time * this->time_scale;
}
void LoopTimerManager::set_fixed_delta_time(float seconds) {