[quake3-commits] r1879 - trunk/code/qcommon
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Tue Feb 8 15:27:49 EST 2011
Author: thilo
Date: 2011-02-08 15:27:49 -0500 (Tue, 08 Feb 2011)
New Revision: 1879
Modified:
trunk/code/qcommon/files.c
Log:
Fix STANDALONE in files.c
Modified: trunk/code/qcommon/files.c
===================================================================
--- trunk/code/qcommon/files.c 2011-02-08 20:24:41 UTC (rev 1878)
+++ trunk/code/qcommon/files.c 2011-02-08 20:27:49 UTC (rev 1879)
@@ -2656,8 +2656,12 @@
havepak = qfalse;
// never autodownload any of the id paks
- if ( FS_idPak(fs_serverReferencedPakNames[i], BASEGAME, NUM_ID_PAKS)
- || FS_idPak(fs_serverReferencedPakNames[i], BASETA, NUM_TA_PAKS) ) {
+ if(FS_idPak(fs_serverReferencedPakNames[i], BASEGAME, NUM_ID_PAKS)
+#ifndef STANDALONE
+ || FS_idPak(fs_serverReferencedPakNames[i], BASETA, NUM_TA_PAKS)
+#endif
+ )
+ {
continue;
}
More information about the quake3-commits
mailing list