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

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Thu Jul 7 12:21:06 EDT 2011


Author: thilo
Date: 2011-07-07 12:21:06 -0400 (Thu, 07 Jul 2011)
New Revision: 2067

Modified:
   trunk/code/qcommon/q_shared.h
Log:
Make naming a bit more foolproof for new macro


Modified: trunk/code/qcommon/q_shared.h
===================================================================
--- trunk/code/qcommon/q_shared.h	2011-07-07 16:12:53 UTC (rev 2066)
+++ trunk/code/qcommon/q_shared.h	2011-07-07 16:21:06 UTC (rev 2067)
@@ -206,7 +206,7 @@
 #define	MIN_QINT			(-MAX_QINT-1)
 
 #define ARRAY_LEN(x)			(sizeof(x) / sizeof(*(x)))
-#define STR_LEN(x)			(ARRAY_LEN(x) - 1)
+#define STRARRAY_LEN(x)			(ARRAY_LEN(x) - 1)
 
 // angle indexes
 #define	PITCH				0		// up / down



More information about the quake3-commits mailing list