aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/manager/LoopTimerManager.cpp
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-12-10 10:19:49 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-12-10 10:19:49 +0100
commitfb3edf33aedc1b0c37c3f74a5eaac05bf48f491a (patch)
tree5404a3689952db05c5b5d1ca05e0b89063e80240 /src/crepe/manager/LoopTimerManager.cpp
parentaae935bfa77f5bb9c4d2e245ac4fac3c7f4beeb7 (diff)
clarified doxygen and changed function name
Diffstat (limited to 'src/crepe/manager/LoopTimerManager.cpp')
-rw-r--r--src/crepe/manager/LoopTimerManager.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/manager/LoopTimerManager.cpp b/src/crepe/manager/LoopTimerManager.cpp
index 366d48a..d2e40fe 100644
--- a/src/crepe/manager/LoopTimerManager.cpp
+++ b/src/crepe/manager/LoopTimerManager.cpp
@@ -92,6 +92,6 @@ void LoopTimerManager::set_fixed_delta_time(double seconds) {
this->fixed_delta_time = std::chrono::duration<double>(seconds);
}
-double LoopTimerManager::get_fixed_loop_interval() const {
+double LoopTimerManager::get_fixed_delta_time() const {
return this->fixed_delta_time.count();
}