From d1cebcca2018ed4ef47ad125e45aafd018a2ab2e Mon Sep 17 00:00:00 2001 From: heavydemon21 Date: Fri, 10 Jan 2025 14:43:42 +0100 Subject: make format --- game/preview/PreviewReplaySubScript.cpp | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'game/preview/PreviewReplaySubScript.cpp') diff --git a/game/preview/PreviewReplaySubScript.cpp b/game/preview/PreviewReplaySubScript.cpp index 51c27aa..580a608 100644 --- a/game/preview/PreviewReplaySubScript.cpp +++ b/game/preview/PreviewReplaySubScript.cpp @@ -21,17 +21,16 @@ void PreviewReplaySubScript::init() { this->subscribe([this](const StartPreviewRecording & e) { return this->start_recording(); }); - } bool PreviewReplaySubScript::on_button_press(const ButtonPressEvent & e) { - if(DISABLE_REPLAY)return false; + if (DISABLE_REPLAY) return false; replay.play(this->recording); return false; } -bool PreviewReplaySubScript::start_recording(){ - if(DISABLE_REPLAY)return false; - if(record_saved){ +bool PreviewReplaySubScript::start_recording() { + if (DISABLE_REPLAY) return false; + if (record_saved) { this->stop_recording(); this->delete_recording(); } @@ -41,16 +40,16 @@ bool PreviewReplaySubScript::start_recording(){ } bool PreviewReplaySubScript::stop_recording() { - if(DISABLE_REPLAY)return false; - if(this->record_started)this->recording = replay.record_end(); + if (DISABLE_REPLAY) return false; + if (this->record_started) this->recording = replay.record_end(); this->record_saved = true; return false; } bool PreviewReplaySubScript::delete_recording() { - if(DISABLE_REPLAY)return false; - if(this->record_started) this->stop_recording(); - if(this->record_saved)replay.release(this->recording); + if (DISABLE_REPLAY) return false; + if (this->record_started) this->stop_recording(); + if (this->record_saved) replay.release(this->recording); this->record_saved = false; return false; } -- cgit v1.2.3