r4633 - trunk/data/qcsrc/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sat Oct 4 17:46:09 EDT 2008


Author: div0
Date: 2008-10-04 17:46:08 -0400 (Sat, 04 Oct 2008)
New Revision: 4633

Modified:
   trunk/data/qcsrc/client/View.qc
Log:
draw HUD before other stuff again (no idea why this is needed)


Modified: trunk/data/qcsrc/client/View.qc
===================================================================
--- trunk/data/qcsrc/client/View.qc	2008-10-04 21:31:26 UTC (rev 4632)
+++ trunk/data/qcsrc/client/View.qc	2008-10-04 21:46:08 UTC (rev 4633)
@@ -315,6 +315,13 @@
 		ctf_view();
 	} else */
 
+	if(!draw_enginesbar)
+	{
+		if(cvar("r_letterbox") == 0)
+		if(cvar("viewsize") < 120)
+			CSQC_common_hud();
+	}
+
 	e = self;
 	for(self = world; (self = nextent(self)); )
 		if(self.draw2d)
@@ -341,13 +348,6 @@
 			if(!scoreboard_active)
 				teamradar_view();
 	}
-
-	if(!draw_enginesbar)
-	{
-		if(cvar("r_letterbox") == 0)
-		if(cvar("viewsize") < 120)
-			CSQC_common_hud();
-	}
 }
 
 void Sbar_Draw();




More information about the nexuiz-commits mailing list