r5652 - trunk/data/qcsrc/client

esteel at icculus.org esteel at icculus.org
Sat Jan 24 07:47:42 EST 2009


Author: esteel
Date: 2009-01-24 07:47:41 -0500 (Sat, 24 Jan 2009)
New Revision: 5652

Modified:
   trunk/data/qcsrc/client/sbar.qc
Log:
move the important messages a bit lower to make them more visible.. maybe in the long run this should become a cvar

Modified: trunk/data/qcsrc/client/sbar.qc
===================================================================
--- trunk/data/qcsrc/client/sbar.qc	2009-01-23 22:39:21 UTC (rev 5651)
+++ trunk/data/qcsrc/client/sbar.qc	2009-01-24 12:47:41 UTC (rev 5652)
@@ -1507,18 +1507,21 @@
 			s = strcat("^1Press ^3", getcommandkey("jump", "+jump"), "^1 to join");
 		o = Sbar_DrawNoteLine(o, s);
 	}
+	if(warmup_stage)
+	{
+		s = "^2Currently in ^1warmup^2 stage!";
+		o = Sbar_DrawNoteLine(o, s);
+	}
 
+	// move more important stuff more to the middle so its more visible
+	o_y = vid_conheight * 0.66;
+
 	string blinkcolor;
 	if(mod(time, 1) >= 0.5)
 		blinkcolor = "^1";
 	else
 		blinkcolor = "^3";
-		
-	if(warmup_stage)
-	{
-		s = "^2Currently in ^1warmup^2 stage!";
-		o = Sbar_DrawNoteLine(o, s);
-	}
+
 	if(ready_waiting)
 	{
 		if(ready_waiting_for_me)




More information about the nexuiz-commits mailing list