r4776 - trunk/data/qcsrc/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Fri Oct 17 09:57:21 EDT 2008


Author: div0
Date: 2008-10-17 09:57:21 -0400 (Fri, 17 Oct 2008)
New Revision: 4776

Modified:
   trunk/data/qcsrc/client/sbar.qc
Log:
fix it again, correctly this time :P


Modified: trunk/data/qcsrc/client/sbar.qc
===================================================================
--- trunk/data/qcsrc/client/sbar.qc	2008-10-17 13:56:24 UTC (rev 4775)
+++ trunk/data/qcsrc/client/sbar.qc	2008-10-17 13:57:21 UTC (rev 4776)
@@ -400,7 +400,6 @@
 	}
 		
 	
-	argc = min(MAX_SBAR_FIELDS, argc);
 	sbar_num_fields = 0;
 
 	drawfont = sbar_font;
@@ -412,7 +411,7 @@
 	else
 		subpattern2 = ",noteams,";
 
-	for(i = 0; i < argc; ++i)
+	for(i = 0; i < argc - 1; ++i)
 	{
 		str = argv(i+1);
 




More information about the nexuiz-commits mailing list