]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - tools/quake3/q3map2/main.c
Merge commit 'f3d0806dfea23aef768535ee2fc8e1fff9aebe9f' into master-merge
[xonotic/netradiant.git] / tools / quake3 / q3map2 / main.c
index e3f5742b6f3b521ffeeee27a16dc70b620d43a2a..2a95c44ceb475f0b862b5f540c02a6f67eb10490 100644 (file)
@@ -59,7 +59,7 @@ char *Q_strncpyz( char *dst, const char *src, size_t len ) {
 
 
 char *Q_strcat( char *dst, size_t dlen, const char *src ) {
-       size_t n = strlen( dst  );
+       size_t n = strlen( dst );
 
        if ( n > dlen ) {
                abort(); /* buffer overflow */
@@ -95,8 +95,7 @@ static void ExitQ3Map( void ){
 
 /*
    ShiftBSPMain()
-   shifts a map: works correctly only with axial faces, placed in positive half of axis
-   for testing physics with huge coordinates
+   shifts a map: for testing physics with huge coordinates
  */
 
 int ShiftBSPMain( int argc, char **argv ){
@@ -356,6 +355,7 @@ int main( int argc, char **argv ){
                        numthreads = atoi( argv[ i ] );
                        argv[ i ] = NULL;
                }
+
                else if( !strcmp( argv[ i ], "-nocmdline" ) )
                {
                        Sys_Printf( "noCmdLine\n" );