diff options
author | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-08 15:03:34 +0100 |
---|---|---|
committer | Loek Le Blansch <loek@pipeframe.xyz> | 2025-01-08 15:03:34 +0100 |
commit | 14d2398b776d7be3c404af5f4e983b435efaf1d1 (patch) | |
tree | 76a4d0b73a0e179dca61ca0f95544edcd017f2d1 /game/hud | |
parent | 38c88e394414556a464b07e091b4b7fc8fd27b1d (diff) |
`make format`jaro/game
Diffstat (limited to 'game/hud')
-rw-r--r-- | game/hud/SpeedScript.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/game/hud/SpeedScript.cpp b/game/hud/SpeedScript.cpp index 29d4193..906a38f 100644 --- a/game/hud/SpeedScript.cpp +++ b/game/hud/SpeedScript.cpp @@ -26,11 +26,11 @@ void SpeedScript::init() { void SpeedScript::fixed_update(crepe::duration_t dt) { LoopTimerManager & lp = this->get_loop_timer(); if (this->get_key_state(Keycode::PAGE_UP)) { - if(lp.get_time_scale() >= 2) return; + if (lp.get_time_scale() >= 2) return; lp.set_time_scale(lp.get_time_scale() + 0.1); } if (this->get_key_state(Keycode::PAGE_DOWN)) { - if(lp.get_time_scale() <= 0.5) return; + if (lp.get_time_scale() <= 0.5) return; lp.set_time_scale(lp.get_time_scale() - 0.1); } } |