From ed48f8accfea326947304c74b85e747df6a5f968 Mon Sep 17 00:00:00 2001
From: B3n30 <benediktthomas@gmail.com>
Date: Mon, 4 May 2020 12:14:40 +0200
Subject: [PATCH] clang-format fix

---
 src/citra/config.cpp                              | 3 ++-
 src/citra_qt/configuration/config.cpp             | 5 +++--
 src/citra_qt/configuration/configure_graphics.cpp | 3 ++-
 3 files changed, 7 insertions(+), 4 deletions(-)

diff --git a/src/citra/config.cpp b/src/citra/config.cpp
index 0df04e557..865f5bc85 100644
--- a/src/citra/config.cpp
+++ b/src/citra/config.cpp
@@ -115,7 +115,8 @@ void Config::ReadValues() {
     // Separable shader is broken on macos with Intel GPU thanks to poor drivers.
     // We still want to provide this option for test/development purposes, but disable it by
     // default.
-    Settings::values.separable_shader = sdl2_config->GetBoolean("Renderer", "separable_shader", false);
+    Settings::values.separable_shader =
+        sdl2_config->GetBoolean("Renderer", "separable_shader", false);
 #endif
     Settings::values.shaders_accurate_mul =
         sdl2_config->GetBoolean("Renderer", "shaders_accurate_mul", false);
diff --git a/src/citra_qt/configuration/config.cpp b/src/citra_qt/configuration/config.cpp
index 4bc486037..068be17d6 100644
--- a/src/citra_qt/configuration/config.cpp
+++ b/src/citra_qt/configuration/config.cpp
@@ -433,10 +433,11 @@ void Config::ReadRendererValues() {
         ReadSetting(QStringLiteral("use_hw_renderer"), true).toBool();
     Settings::values.use_hw_shader = ReadSetting(QStringLiteral("use_hw_shader"), true).toBool();
 #ifdef __APPLE__
-    // Hardware shader is broken on macos thanks to poor drivers.
+    // Hardware shader is broken on macos with Intel GPUs thanks to poor drivers.
     // We still want to provide this option for test/development purposes, but disable it by
     // default.
-    Settings::values.separable_shader = ReadSetting(QStringLiteral("separable_shader"), false).toBool();
+    Settings::values.separable_shader =
+        ReadSetting(QStringLiteral("separable_shader"), false).toBool();
 #endif
     Settings::values.shaders_accurate_mul =
         ReadSetting(QStringLiteral("shaders_accurate_mul"), false).toBool();
diff --git a/src/citra_qt/configuration/configure_graphics.cpp b/src/citra_qt/configuration/configure_graphics.cpp
index f09aa474b..66c3f6e8b 100644
--- a/src/citra_qt/configuration/configure_graphics.cpp
+++ b/src/citra_qt/configuration/configure_graphics.cpp
@@ -37,7 +37,8 @@ ConfigureGraphics::ConfigureGraphics(QWidget* parent)
         if (state == Qt::Checked) {
             QMessageBox::warning(
                 this, tr("Hardware Shader Warning"),
-                tr("Separable Shader support is broken on macOS with Intel GPUs, and will cause graphical issues "
+                tr("Separable Shader support is broken on macOS with Intel GPUs, and will cause "
+                   "graphical issues "
                    "like showing a black screen.<br><br>The option is only there for "
                    "test/development purposes. If you experience graphical issues with Hardware "
                    "Shader, please turn it off."));