r805 - trunk/code/qcommon

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Fri Jun 16 16:47:29 EDT 2006


Author: thilo
Date: 2006-06-16 16:47:29 -0400 (Fri, 16 Jun 2006)
New Revision: 805

Modified:
   trunk/code/qcommon/files.c
Log:
Little fix for the sanity check fix from previous rev...


Modified: trunk/code/qcommon/files.c
===================================================================
--- trunk/code/qcommon/files.c	2006-06-16 20:38:08 UTC (rev 804)
+++ trunk/code/qcommon/files.c	2006-06-16 20:47:29 UTC (rev 805)
@@ -3256,9 +3256,8 @@
 		Cmd_TokenizeString( pakNames );
 
 		d = Cmd_Argc();
-		if(d > MAX_SEARCH_PATHS)
-			d = MAX_SEARCH_PATHS;
-		else if(d > c)
+
+		if(d > c)
 			d = c;
 
 		for ( i = 0 ; i < d ; i++ ) {




More information about the quake3-commits mailing list