fix a stupid error in moving paths
git-svn-id: svn://svn.icculus.org/netradiant/trunk@226 61c419a2-8eb2-4b30-bcec-8cead039b335
This commit is contained in:
@@ -280,7 +280,7 @@ void AddHomeBasePath( char *path )
|
|||||||
return;
|
return;
|
||||||
|
|
||||||
/* make a hole */
|
/* make a hole */
|
||||||
for( i = 0; i < (MAX_BASE_PATHS - 1); i++ )
|
for( i = (MAX_BASE_PATHS - 2); i >= 0; i-- )
|
||||||
basePaths[ i + 1 ] = basePaths[ i ];
|
basePaths[ i + 1 ] = basePaths[ i ];
|
||||||
|
|
||||||
/* concatenate home dir and path */
|
/* concatenate home dir and path */
|
||||||
|
|||||||
Reference in New Issue
Block a user