r4612 - trunk/data/qcsrc/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Fri Oct 3 11:06:50 EDT 2008


Author: div0
Date: 2008-10-03 11:06:50 -0400 (Fri, 03 Oct 2008)
New Revision: 4612

Modified:
   trunk/data/qcsrc/client/teamradar.qc
Log:
fix negative cl_teamradar_scale


Modified: trunk/data/qcsrc/client/teamradar.qc
===================================================================
--- trunk/data/qcsrc/client/teamradar.qc	2008-10-03 14:55:47 UTC (rev 4611)
+++ trunk/data/qcsrc/client/teamradar.qc	2008-10-03 15:06:50 UTC (rev 4612)
@@ -132,7 +132,7 @@
 
 	if(teamradar_scale < 0)
 	{
-		current_zoomfraction = 1 - current_zoomfraction;
+		f = 1 - f;
 		teamradar_scale = -teamradar_scale;
 	}
 




More information about the nexuiz-commits mailing list