summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinNoGUI/MainNoGUI.cpp
diff options
context:
space:
mode:
authorOatmealDome <OatmealDome@users.noreply.github.com>2025-04-30 01:17:31 -0400
committerGitHub <noreply@github.com>2025-04-30 01:17:31 -0400
commit0b0151770a2a087063775e654e1b6208033a9c21 (patch)
treef4539f731ddbee53f46aab1d01caa08632c07738 /Source/Core/DolphinNoGUI/MainNoGUI.cpp
parent23a5ea3504038c86e03f69e6be7e314dd3212128 (diff)
parentbf554edfe0b543b08c42401b78fea2ae0ffa1168 (diff)
Merge pull request #13436 from JoshuaVandaele/clang-format-19
Update clang-format to version 19
Diffstat (limited to 'Source/Core/DolphinNoGUI/MainNoGUI.cpp')
-rw-r--r--Source/Core/DolphinNoGUI/MainNoGUI.cpp19
1 files changed, 9 insertions, 10 deletions
diff --git a/Source/Core/DolphinNoGUI/MainNoGUI.cpp b/Source/Core/DolphinNoGUI/MainNoGUI.cpp
index 539bbe769f..2d677aa7ba 100644
--- a/Source/Core/DolphinNoGUI/MainNoGUI.cpp
+++ b/Source/Core/DolphinNoGUI/MainNoGUI.cpp
@@ -209,23 +209,22 @@ int main(int argc, char* argv[])
parser->add_option("-p", "--platform")
.action("store")
.help("Window platform to use [%choices]")
- .choices({
- "headless"
+ .choices({"headless"
#ifdef __linux__
- ,
- "fbdev"
+ ,
+ "fbdev"
#endif
#if HAVE_X11
- ,
- "x11"
+ ,
+ "x11"
#endif
#ifdef _WIN32
- ,
- "win32"
+ ,
+ "win32"
#endif
#ifdef __APPLE__
- ,
- "macos"
+ ,
+ "macos"
#endif
});