aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/manager
diff options
context:
space:
mode:
authorJAROWMR <jarorutjes07@gmail.com>2024-12-12 18:40:58 +0100
committerJAROWMR <jarorutjes07@gmail.com>2024-12-12 18:40:58 +0100
commit229a95edaa03a8a4f0358280acb6b5ffef581ced (patch)
tree66145ff1499d6966ae930261727a391b240d1a4e /src/crepe/manager
parentbef438ff7790acbe2dc376097e1782e60356bf45 (diff)
parentab1423f48d82ba9b0619ec107639a80773edbfc2 (diff)
Merge branch 'jaro/physics-system-improvement' of github.com:lonkaars/crepe into jaro/particle-system-improvement
Diffstat (limited to 'src/crepe/manager')
-rw-r--r--src/crepe/manager/LoopTimerManager.cpp4
-rw-r--r--src/crepe/manager/LoopTimerManager.h2
2 files changed, 3 insertions, 3 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) {
diff --git a/src/crepe/manager/LoopTimerManager.h b/src/crepe/manager/LoopTimerManager.h
index dcbe21c..91403e4 100644
--- a/src/crepe/manager/LoopTimerManager.h
+++ b/src/crepe/manager/LoopTimerManager.h
@@ -103,7 +103,7 @@ public:
*
* \return The fixed delta time, scaled by the current time scale, in seconds.
*/
- float get_scaled_fixed_delta_time() const;
+ duration_t get_scaled_fixed_delta_time() const;
private:
//! Friend relation to use start,enforce_frame_rate,get_lag,update,advance_fixed_update.