From: Thomas Debesse Date: Fri, 26 Feb 2021 23:11:42 +0000 (+0100) Subject: q3map2: accept -bsp stage option name without complaining X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=7ba473e5f11c73b920eb7abd9ce69d03f77ce90c;p=xonotic%2Fnetradiant.git q3map2: accept -bsp stage option name without complaining - 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. --- 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--; }