diff options
author | D G Turner | 2012-05-02 20:22:04 +0100 |
---|---|---|
committer | D G Turner | 2012-05-02 20:22:04 +0100 |
commit | ec1070678caa1070e3d229a80f77ad78a8360b33 (patch) | |
tree | d5acd4af6eb142184e0abc72b9a0a353e4b17570 /devtools | |
parent | f23ca8b62b6be15e570311dcaad301067c8e052a (diff) | |
download | scummvm-rg350-ec1070678caa1070e3d229a80f77ad78a8360b33.tar.gz scummvm-rg350-ec1070678caa1070e3d229a80f77ad78a8360b33.tar.bz2 scummvm-rg350-ec1070678caa1070e3d229a80f77ad78a8360b33.zip |
CREATE_PROJECT: Fix tool help output to reflect command line changes.
Diffstat (limited to 'devtools')
-rw-r--r-- | devtools/create_project/create_project.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/devtools/create_project/create_project.cpp b/devtools/create_project/create_project.cpp index 293cc0b2de..df220f0934 100644 --- a/devtools/create_project/create_project.cpp +++ b/devtools/create_project/create_project.cpp @@ -654,14 +654,14 @@ void displayHelp(const char *exe) { "\n" "Engines settings:\n" " --list-engines list all available engines and their default state\n" - " --enable-engine enable building of the engine with the name \"engine\"\n" - " --disable-engine disable building of the engine with the name \"engine\"\n" + " --enable-engine=<name> enable building of the engine with the name \"name\"\n" + " --disable-engine=<name> disable building of the engine with the name \"name\"\n" " --enable-all-engines enable building of all engines\n" " --disable-all-engines disable building of all engines\n" "\n" "Optional features settings:\n" - " --enable-name enable inclusion of the feature \"name\"\n" - " --disable-name disable inclusion of the feature \"name\"\n" + " --enable-<name> enable inclusion of the feature \"name\"\n" + " --disable-<name> disable inclusion of the feature \"name\"\n" "\n" " There are the following features available:\n" "\n"; |