From: rpolzer Date: Wed, 24 Sep 2008 07:04:05 +0000 (+0000) Subject: complain more loudly about wrong compile flags X-Git-Tag: svn-r421~316 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=81c10be0f48a9071bf23cdd709ae31eb801f42d5;p=xonotic%2Fnetradiant.git complain more loudly about wrong compile flags git-svn-id: svn://svn.icculus.org/netradiant/trunk@104 61c419a2-8eb2-4b30-bcec-8cead039b335 --- diff --git a/tools/quake3/q3map2/bsp.c b/tools/quake3/q3map2/bsp.c index 00fd1fe8..30ea92c0 100644 --- a/tools/quake3/q3map2/bsp.c +++ b/tools/quake3/q3map2/bsp.c @@ -863,7 +863,10 @@ int BSPMain( int argc, char **argv ) else if( !strcmp( argv[ i ], "-bsp" ) ) Sys_Printf( "-bsp argument unnecessary\n" ); else - Sys_Printf( "WARNING: Unknown option \"%s\"\n", argv[ i ] ); + { + Sys_Printf( "WARNING: Unknown option \"%s\"\a\n", argv[ i ] ); + sleep(1); + } } /* fixme: print more useful usage here */ diff --git a/tools/quake3/q3map2/light.c b/tools/quake3/q3map2/light.c index e5e526fb..5130b2a2 100644 --- a/tools/quake3/q3map2/light.c +++ b/tools/quake3/q3map2/light.c @@ -2325,7 +2325,10 @@ int LightMain( int argc, char **argv ) /* unhandled args */ else - Sys_Printf( "WARNING: Unknown argument \"%s\"\n", argv[ i ] ); + { + Sys_Printf( "WARNING: Unknown argument \"%s\"\a\n", argv[ i ] ); + sleep(1); + } } diff --git a/tools/quake3/q3map2/vis.c b/tools/quake3/q3map2/vis.c index 4ee843a0..d32b9d1f 100644 --- a/tools/quake3/q3map2/vis.c +++ b/tools/quake3/q3map2/vis.c @@ -1074,7 +1074,10 @@ int VisMain (int argc, char **argv) } else - Sys_Printf( "WARNING: Unknown option \"%s\"\n", argv[ i ] ); + { + Sys_Printf( "WARNING: Unknown option \"%s\"\a\n", argv[ i ] ); + sleep(1); + } } if( i != argc - 1 )