From 7ba473e5f11c73b920eb7abd9ce69d03f77ce90c Mon Sep 17 00:00:00 2001 From: Thomas Debesse Date: Sat, 27 Feb 2021 00:11:42 +0100 Subject: [PATCH] q3map2: accept -bsp stage option name without complaining MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit - using it is far more consistent with other stages, - makes reading options less prone to errors: reading “q3map3 -meta” may induce to human reader that meta is a stage while in fact it's “q3map2 -bsp -meta” and meta is an option for the bsp stage, - it is not bad to use the explicit -bsp stage option, - there is no reason to recommend to not use it. --- tools/quake3/q3map2/bsp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/tools/quake3/q3map2/bsp.c b/tools/quake3/q3map2/bsp.c index 432de5d5..e2bc46cc 100644 --- a/tools/quake3/q3map2/bsp.c +++ b/tools/quake3/q3map2/bsp.c @@ -710,7 +710,6 @@ int BSPMain( int argc, char **argv ){ surfaceFilePath[0] = 0; if ( argc >= 2 && !strcmp( argv[ 1 ], "-bsp" ) ) { - Sys_Printf( "-bsp argument unnecessary\n" ); argv++; argc--; } -- 2.39.2