aboutsummaryrefslogtreecommitdiff
path: root/src/crepe/manager/LoopTimerManager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/crepe/manager/LoopTimerManager.cpp')
-rw-r--r--src/crepe/manager/LoopTimerManager.cpp4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/crepe/manager/LoopTimerManager.cpp b/src/crepe/manager/LoopTimerManager.cpp
index e57ec6f..8725c33 100644
--- a/src/crepe/manager/LoopTimerManager.cpp
+++ b/src/crepe/manager/LoopTimerManager.cpp
@@ -55,9 +55,7 @@ void LoopTimerManager::advance_fixed_elapsed_time() {
void LoopTimerManager::set_target_fps(int fps) {
this->target_fps = fps;
//check if fps is lower or equals 0
- if (fps <= 0) {
- return;
- }
+ if (fps <= 0) return;
// target time per frame in seconds
this->frame_target_time = std::chrono::duration<double>(1.0) / this->target_fps;
}