From 14d2398b776d7be3c404af5f4e983b435efaf1d1 Mon Sep 17 00:00:00 2001 From: Loek Le Blansch Date: Wed, 8 Jan 2025 15:03:34 +0100 Subject: `make format` --- game/hud/SpeedScript.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'game/hud') 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); } } -- cgit v1.2.3