summaryrefslogtreecommitdiff
path: root/Source/Core/DolphinNoGUI/MainNoGUI.cpp
diff options
context:
space:
mode:
authorJoshua Vandaƫle <joshua@vandaele.software>2025-03-17 12:14:32 +0100
committerJoshua Vandaƫle <joshua@vandaele.software>2025-04-23 11:19:20 +0200
commit2c54ee94c1bed2b958478e302307be4d056321a5 (patch)
tree69bd8b88ffc54d9ec7bb0350de0be9b30dca60fc /Source/Core/DolphinNoGUI/MainNoGUI.cpp
parentd9d00820187d0d8e75c1cc113196ba255ab1a688 (diff)
linter: Apply clang-format 19.1 formatting
find ./Source/ -name '*.cpp' -o -name '*.h' | xargs clang-format-19 -i
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
});