[quake3-commits] r1885 - in trunk/code: client qcommon

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Tue Feb 8 19:42:54 EST 2011


Author: thilo
Date: 2011-02-08 19:42:54 -0500 (Tue, 08 Feb 2011)
New Revision: 1885

Modified:
   trunk/code/client/client.h
   trunk/code/qcommon/q_shared.h
Log:
Finally fix missionpack compiling for STANDALONE=1, yes, this is tested.


Modified: trunk/code/client/client.h
===================================================================
--- trunk/code/client/client.h	2011-02-09 00:32:11 UTC (rev 1884)
+++ trunk/code/client/client.h	2011-02-09 00:42:54 UTC (rev 1885)
@@ -456,9 +456,7 @@
 
 void CL_ShutdownRef( void );
 void CL_InitRef( void );
-#ifndef STANDALONE
 qboolean CL_CDKeyValidate( const char *key, const char *checksum );
-#endif
 int CL_ServerStatus( char *serverAddress, char *serverStatusString, int maxLen );
 
 qboolean CL_CheckPaused(void);

Modified: trunk/code/qcommon/q_shared.h
===================================================================
--- trunk/code/qcommon/q_shared.h	2011-02-09 00:32:11 UTC (rev 1884)
+++ trunk/code/qcommon/q_shared.h	2011-02-09 00:42:54 UTC (rev 1885)
@@ -37,7 +37,6 @@
 #else
   #define PRODUCT_NAME			"ioq3"
   #define BASEGAME			"baseq3"
-  #define BASETA			"missionpack"
   #define CLIENT_WINDOW_TITLE     	"ioquake3"
   #define CLIENT_WINDOW_MIN_TITLE 	"ioq3"
   #define GAMENAME_FOR_MASTER		"Quake3Arena"
@@ -45,6 +44,8 @@
   #define FLATLINE_FOR_MASTER		HEARTBEAT_FOR_MASTER
 #endif
 
+#define BASETA				"missionpack"
+
 #ifdef _MSC_VER
   #define PRODUCT_VERSION "1.35"
 #endif



More information about the quake3-commits mailing list