[quake3-commits] r1776 - trunk/code/qcommon

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sun Feb 28 03:56:54 EST 2010


Author: ludwig
Date: 2010-02-28 03:56:54 -0500 (Sun, 28 Feb 2010)
New Revision: 1776

Modified:
   trunk/code/qcommon/files.c
Log:
need to hardcode "baseq3" to prevent download of id files even if compiled STANDALONE

Modified: trunk/code/qcommon/files.c
===================================================================
--- trunk/code/qcommon/files.c	2010-02-26 16:32:49 UTC (rev 1775)
+++ trunk/code/qcommon/files.c	2010-02-28 08:56:54 UTC (rev 1776)
@@ -2621,7 +2621,8 @@
 		havepak = qfalse;
 
 		// never autodownload any of the id paks
-		if ( FS_idPak(fs_serverReferencedPakNames[i], BASEGAME) || FS_idPak(fs_serverReferencedPakNames[i], "missionpack") ) {
+		if ( FS_idPak(fs_serverReferencedPakNames[i], "baseq3")
+		|| FS_idPak(fs_serverReferencedPakNames[i], "missionpack") ) {
 			continue;
 		}
 



More information about the quake3-commits mailing list