aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/api/LoopTimer.cpp
diff options
context:
space:
mode:
authorWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-12-05 11:01:59 +0100
committerWBoerenkamps <wrj.boerenkamps@student.avans.nl>2024-12-05 11:01:59 +0100
commit7a9da9c1be04f401a701931f59ee85b1d37f0de0 (patch)
tree6b11d011a00a36a21c31bdb4b286416d4e93a774 /src/crepe/api/LoopTimer.cpp
parent8aa43f634c1a89f05681ffc5f3cd0a3477e50e71 (diff)
changed time back to 1 second
Diffstat (limited to 'src/crepe/api/LoopTimer.cpp')
-rw-r--r--src/crepe/api/LoopTimer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/crepe/api/LoopTimer.cpp b/src/crepe/api/LoopTimer.cpp
index 07f0f75..eedb5ee 100644
--- a/src/crepe/api/LoopTimer.cpp
+++ b/src/crepe/api/LoopTimer.cpp
@@ -47,7 +47,7 @@ double LoopTimer::get_fixed_delta_time() const { return this->fixed_delta_time.c
void LoopTimer::set_target_fps(int fps) {
this->target_fps = fps;
// target time per frame in seconds
- this->frame_target_time = std::chrono::duration<double>(1.0) / target_fps;
+ this->frame_target_time = std::chrono::duration<double>(1.0) / this->target_fps;
}
int LoopTimer::get_fps() const { return this->actual_fps; }