From: rambetter Date: Sun, 6 Mar 2011 19:14:50 +0000 (+0000) Subject: Fixing a Sys_Printf() in main() for "q3map2 -convert". The usage message was X-Git-Tag: xonotic-v0.7.0~16^2~11^2~11 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=a62e98a1f9abc0455f8ce31e1c9245990bc21228;p=xonotic%2Fnetradiant.git Fixing a Sys_Printf() in main() for "q3map2 -convert". The usage message was copied from "-scale" and was incorrect. Thanks to Ensiform from ioquake3 IRC room for reporting this bug. git-svn-id: svn://svn.icculus.org/gtkradiant/GtkRadiant/trunk@482 8a3a26a2-13c4-0310-b231-cf6edde360e5 --- diff --git a/tools/quake3/q3map2/main.c b/tools/quake3/q3map2/main.c index 86d4d498..045c1c62 100644 --- a/tools/quake3/q3map2/main.c +++ b/tools/quake3/q3map2/main.c @@ -503,7 +503,7 @@ int ConvertBSPMain( int argc, char **argv ) /* arg checking */ if( argc < 1 ) { - Sys_Printf( "Usage: q3map -scale [-v] \n" ); + Sys_Printf( "Usage: q3map -convert [-format ] [-v] \n" ); return 0; }