From 8c209b3bc9668526c1f6a7674c2a17ffd44c9229 Mon Sep 17 00:00:00 2001 From: degasus Date: Sat, 18 Apr 2015 15:03:42 +0200 Subject: [PATCH] no-gui: fix help string --- Source/Core/DolphinWX/MainNoGUI.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Source/Core/DolphinWX/MainNoGUI.cpp b/Source/Core/DolphinWX/MainNoGUI.cpp index bcb9893f33..5b0b4ee10d 100644 --- a/Source/Core/DolphinWX/MainNoGUI.cpp +++ b/Source/Core/DolphinWX/MainNoGUI.cpp @@ -316,9 +316,9 @@ int main(int argc, char* argv[]) fprintf(stderr, "%s\n\n", scm_rev_str); fprintf(stderr, "A multi-platform GameCube/Wii emulator\n\n"); fprintf(stderr, "Usage: %s [-e ] [-h] [-v]\n", argv[0]); - fprintf(stderr, " -e, --exec Load the specified file\n"); - fprintf(stderr, " -h, --help Show this help message\n"); - fprintf(stderr, " -v, --help Print version and exit\n"); + fprintf(stderr, " -e, --exec Load the specified file\n"); + fprintf(stderr, " -h, --help Show this help message\n"); + fprintf(stderr, " -v, --version Print version and exit\n"); return 1; }