diff options
author | JAROWMR <jarorutjes07@gmail.com> | 2024-12-12 18:21:38 +0100 |
---|---|---|
committer | JAROWMR <jarorutjes07@gmail.com> | 2024-12-12 18:21:38 +0100 |
commit | 15bb400deafa1ea4fea1ff11e835f103fa82090f (patch) | |
tree | ae9edbfb43b3cd8f882cbfadc5dddaeced62068a /src/crepe/manager/LoopTimerManager.cpp | |
parent | 32ab9f586491ec513a170160f201acfb8df90f3d (diff) |
change get fixed_dt to float
Diffstat (limited to 'src/crepe/manager/LoopTimerManager.cpp')
-rw-r--r-- | src/crepe/manager/LoopTimerManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/crepe/manager/LoopTimerManager.cpp b/src/crepe/manager/LoopTimerManager.cpp index 9819632..4a3df0a 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; } -duration_t LoopTimerManager::get_scaled_fixed_delta_time() const { - return this->fixed_delta_time * this->time_scale; +float LoopTimerManager::get_scaled_fixed_delta_time() const { + return (this->fixed_delta_time * this->time_scale).count(); } void LoopTimerManager::set_fixed_delta_time(float seconds) { |