[nexuiz-commits] r7987 - in branches/nexuiz-2.0: . data/qcsrc/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Tue Sep 29 08:42:34 EDT 2009


Author: div0
Date: 2009-09-29 08:42:34 -0400 (Tue, 29 Sep 2009)
New Revision: 7987

Modified:
   branches/nexuiz-2.0/.patchsets
   branches/nexuiz-2.0/data/qcsrc/client/sbar.qc
Log:
r7986 | fruitiex | 2009-09-29 08:34:47 -0400 (Tue, 29 Sep 2009) | 2 lines
fix weapon icons overlapping the hud background


Modified: branches/nexuiz-2.0/.patchsets
===================================================================
--- branches/nexuiz-2.0/.patchsets	2009-09-29 12:34:47 UTC (rev 7986)
+++ branches/nexuiz-2.0/.patchsets	2009-09-29 12:42:34 UTC (rev 7987)
@@ -1,2 +1,2 @@
 master = svn://svn.icculus.org/nexuiz/trunk
-revisions_applied = 1-7945,7948-7948,7951-7984
+revisions_applied = 1-7945,7948-7948,7951-7986

Modified: branches/nexuiz-2.0/data/qcsrc/client/sbar.qc
===================================================================
--- branches/nexuiz-2.0/data/qcsrc/client/sbar.qc	2009-09-29 12:34:47 UTC (rev 7986)
+++ branches/nexuiz-2.0/data/qcsrc/client/sbar.qc	2009-09-29 12:42:34 UTC (rev 7987)
@@ -76,12 +76,12 @@
 	color_x = color_y = color_z = value;
 
 	// width = 300, height = 100
-	const float w_width = 25, w_height = 12, w_space = 2, font_size = 8;
+	const float w_width = 24, w_height = 12, w_space = 2, font_size = 8;
 
 	sp = weaponspace[idx] + 1;
 	weaponspace[idx] = sp;
 
-	pos_x = (vid_conwidth + 10 - w_width * 9) * 0.5 + w_width * idx;
+	pos_x = (vid_conwidth + 6 - w_width * 9) * 0.5 + w_width * idx;
 	pos_y = (vid_conheight - w_height * sp) - 38; // move 38 pixels up
 	pos_z = 0;
 	vsize_x = w_width;



More information about the nexuiz-commits mailing list