diff options
Diffstat (limited to 'Source/Core/DolphinNoGUI/MainNoGUI.cpp')
| -rw-r--r-- | Source/Core/DolphinNoGUI/MainNoGUI.cpp | 19 |
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 }); |
