From 9603e86215af13a046701a0d245d4d8be81c6c2f Mon Sep 17 00:00:00 2001 From: Peter Gal Date: Thu, 9 Nov 2017 17:07:27 +0100 Subject: [PATCH] Fix renderdoccmd help screen The help information for the 'convert' command in the renderdoccmd was incorrect. --- renderdoccmd/renderdoccmd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/renderdoccmd/renderdoccmd.cpp b/renderdoccmd/renderdoccmd.cpp index 6dd5f7658..779e6985e 100644 --- a/renderdoccmd/renderdoccmd.cpp +++ b/renderdoccmd/renderdoccmd.cpp @@ -638,7 +638,7 @@ struct ConvertCommand : public Command formatOptions.add(f.name); parser.add("filename", 'f', "The file to convert from.", false); - parser.add("output", 'o', "The file to convert from.", false); + parser.add("output", 'o', "The file to convert to.", false); parser.add("input-format", 'i', "The format of the input file.", false, "", formatOptions); parser.add("convert-format", 'c', "The format of the output file.", false, "", @@ -646,7 +646,7 @@ struct ConvertCommand : public Command parser.add("list-formats", '\0', "print a list of target formats"); parser.stop_at_rest(true); } - virtual const char *Description() { return "Run internal tests such as unit tests."; } + virtual const char *Description() { return "Convert between capture formats."; } virtual bool IsInternalOnly() { return false; } virtual bool IsCaptureCommand() { return false; } virtual int Execute(cmdline::parser &parser, const CaptureOptions &)