diff --git a/docs/Complete_list_of_command_line_parameters.htm b/docs/Complete_list_of_command_line_parameters.htm
index 105c7cb0..0c5d7b3f 100644
--- a/docs/Complete_list_of_command_line_parameters.htm
+++ b/docs/Complete_list_of_command_line_parameters.htm
@@ -329,13 +329,13 @@ td.formatted_questions ol { margin-top: 0px; margin-bottom: 0px; }
Exporting lightmaps¶
- -export filename.bsp: Copies lightmaps from the BSP to filename/lightmap_0000.tga ff
+ -export filename.bsp: Copies lightmaps from the BSP to filename/lightmap_NNNN.tga
Importing lightmaps¶
- -import filename.bsp: Copies lightmaps from filename/lightmap_0000.tga ff into the BSP
+ -import filename.bsp: Copies lightmaps from filename/lightmap_NNNN.tga into the BSP
diff --git a/tools/quake3/q3map2/help.cpp b/tools/quake3/q3map2/help.cpp
index bf60f62d..c711f096 100644
--- a/tools/quake3/q3map2/help.cpp
+++ b/tools/quake3/q3map2/help.cpp
@@ -325,7 +325,7 @@ static void HelpConvert()
static void HelpExport()
{
const std::vector options = {
- {"-export ", "Copies lightmaps from the BSP to `filename/lightmap_0000.tga` ff"}
+ {"-export ", "Copies lightmaps from the BSP to `filename/lightmap_NNNN.tga`"}
};
HelpOptions("Exporting lightmaps", 0, 80, options);
@@ -334,7 +334,7 @@ static void HelpExport()
static void HelpImport()
{
const std::vector options = {
- {"-import ", "Copies lightmaps from `filename/lightmap_0000.tga` ff into the BSP"},
+ {"-import ", "Copies lightmaps from `filename/lightmap_NNNN.tga` into the BSP"},
};
HelpOptions("Importing lightmaps", 0, 80, options);
diff --git a/tools/quake3/q3map2/vis.cpp b/tools/quake3/q3map2/vis.cpp
index 7c9da9a6..0eb8e03c 100644
--- a/tools/quake3/q3map2/vis.cpp
+++ b/tools/quake3/q3map2/vis.cpp
@@ -874,7 +874,7 @@ int VisMain( Args& args ){
/* process arguments */
if ( args.empty() ) {
- Error( "usage: vis [-threads #] [-level 0-4] [-fast] [-v] bspfile" );
+ Error( "usage: vis [-threads #] [-fast] [-v] bspfile" );
}
const char *fileName = args.takeBack();
const auto argsToInject = args.getVector();