r4742 - in trunk/data/qcsrc: client common

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Tue Oct 14 01:51:37 EDT 2008


Author: div0
Date: 2008-10-14 01:51:37 -0400 (Tue, 14 Oct 2008)
New Revision: 4742

Modified:
   trunk/data/qcsrc/client/miscfunctions.qc
   trunk/data/qcsrc/client/sbar.qc
   trunk/data/qcsrc/common/util.qc
Log:
de-linuxed the code base a bit


Modified: trunk/data/qcsrc/client/miscfunctions.qc
===================================================================
--- trunk/data/qcsrc/client/miscfunctions.qc	2008-10-13 15:23:02 UTC (rev 4741)
+++ trunk/data/qcsrc/client/miscfunctions.qc	2008-10-14 05:51:37 UTC (rev 4742)
@@ -71,8 +71,6 @@
 	AuditLists();
 }
 
-// warning: Local "team" defined with name of a global
-// FU FTEQCC, .float team is a ENTVAR shitty piece of crap!!!
 float RegisterTeam(entity Team)
 {
 	entity tm;

Modified: trunk/data/qcsrc/client/sbar.qc
===================================================================
--- trunk/data/qcsrc/client/sbar.qc	2008-10-13 15:23:02 UTC (rev 4741)
+++ trunk/data/qcsrc/client/sbar.qc	2008-10-14 05:51:37 UTC (rev 4742)
@@ -911,7 +911,7 @@
 			pos_x -= sbar_fontsize_x*sbar_size[i] + sbar_fontsize_x;
 			/**
 			 * FTEQCC BUG!
-			 * Using the following line will fuck it all up:
+			 * Using the following line will mess it all up:
 			 **
 			 * tmp_x = sbar_size[i] - strlen(sbar_title[i])*8;
 			 */

Modified: trunk/data/qcsrc/common/util.qc
===================================================================
--- trunk/data/qcsrc/common/util.qc	2008-10-13 15:23:02 UTC (rev 4741)
+++ trunk/data/qcsrc/common/util.qc	2008-10-14 05:51:37 UTC (rev 4742)
@@ -202,7 +202,7 @@
 	result = ftos(number);
 	len = strlen(result);
 	// does it have a decimal point (should not happen)? If there is one, it is always at len-7)
-		// if ftos had fucked it up, which should never happen: "34278.000000"
+		// if ftos had messed it up, which should never happen: "34278.000000"
 	if(len >= 7)
 		if(substring(result, len - 7, 1) == ".")
 		{




More information about the nexuiz-commits mailing list