From ab1423f48d82ba9b0619ec107639a80773edbfc2 Mon Sep 17 00:00:00 2001 From: JAROWMR Date: Thu, 12 Dec 2024 18:37:27 +0100 Subject: reverted --- src/crepe/manager/LoopTimerManager.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/crepe/manager/LoopTimerManager.cpp') 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) { -- cgit v1.2.3