From edfd17e744f6b18a29dd02e5bb78841cab835098 Mon Sep 17 00:00:00 2001 From: NebulaGazer Date: Thu, 18 May 2023 16:58:03 -0400 Subject: [PATCH] fix formatting --- src/yuzu/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 3e46446dcf..7d11dc45f6 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -4559,7 +4559,8 @@ void GMainWindow::OnLanguageChanged(const QString& locale) { void GMainWindow::OnDecreaseSpeed() { int step = 50; - Settings::values.speed_limit.SetValue(std::max(Settings::values.speed_limit.GetValue() - step, 0)); + Settings::values.speed_limit.SetValue( + std::max(Settings::values.speed_limit.GetValue() - step, 0)); } void GMainWindow::OnIncreaseSpeed() {