r5826 - trunk/data/qcsrc/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Tue Feb 10 07:25:05 EST 2009


Author: div0
Date: 2009-02-10 07:24:56 -0500 (Tue, 10 Feb 2009)
New Revision: 5826

Modified:
   trunk/data/qcsrc/client/projectile.qc
Log:
fix inverse logic in projectile drawing


Modified: trunk/data/qcsrc/client/projectile.qc
===================================================================
--- trunk/data/qcsrc/client/projectile.qc	2009-02-10 10:53:18 UTC (rev 5825)
+++ trunk/data/qcsrc/client/projectile.qc	2009-02-10 12:24:56 UTC (rev 5826)
@@ -94,7 +94,7 @@
 	}
 	else
 	{
-		drawn = !(self.iflags & IFLAG_VALID);
+		drawn = (self.iflags & IFLAG_VALID);
 		t = time;
 	}
 




More information about the nexuiz-commits mailing list