[nexuiz-commits] r7121 - in trunk/data: gfx/hud qcsrc/client

DONOTREPLY at icculus.org DONOTREPLY at icculus.org
Sun Jun 28 11:38:07 EDT 2009


Author: m0rfar
Date: 2009-06-28 11:38:07 -0400 (Sun, 28 Jun 2009)
New Revision: 7121

Modified:
   trunk/data/gfx/hud/num_0.tga
   trunk/data/gfx/hud/num_1.tga
   trunk/data/gfx/hud/num_2.tga
   trunk/data/gfx/hud/num_3.tga
   trunk/data/gfx/hud/num_4.tga
   trunk/data/gfx/hud/num_5.tga
   trunk/data/gfx/hud/num_6.tga
   trunk/data/gfx/hud/num_7.tga
   trunk/data/gfx/hud/num_8.tga
   trunk/data/gfx/hud/num_9.tga
   trunk/data/gfx/hud/num_colon.tga
   trunk/data/gfx/hud/num_minus.tga
   trunk/data/gfx/hud/num_plus.tga
   trunk/data/gfx/hud/sb_timerbg.tga
   trunk/data/qcsrc/client/sbar.qc
Log:
hudfixes v6 + new numbers + timerbg

Modified: trunk/data/gfx/hud/num_0.tga
===================================================================
(Binary files differ)

Modified: trunk/data/gfx/hud/num_1.tga
===================================================================
(Binary files differ)

Modified: trunk/data/gfx/hud/num_2.tga
===================================================================
(Binary files differ)

Modified: trunk/data/gfx/hud/num_3.tga
===================================================================
(Binary files differ)

Modified: trunk/data/gfx/hud/num_4.tga
===================================================================
(Binary files differ)

Modified: trunk/data/gfx/hud/num_5.tga
===================================================================
(Binary files differ)

Modified: trunk/data/gfx/hud/num_6.tga
===================================================================
(Binary files differ)

Modified: trunk/data/gfx/hud/num_7.tga
===================================================================
(Binary files differ)

Modified: trunk/data/gfx/hud/num_8.tga
===================================================================
(Binary files differ)

Modified: trunk/data/gfx/hud/num_9.tga
===================================================================
(Binary files differ)

Modified: trunk/data/gfx/hud/num_colon.tga
===================================================================
(Binary files differ)

Modified: trunk/data/gfx/hud/num_minus.tga
===================================================================
(Binary files differ)

Modified: trunk/data/gfx/hud/num_plus.tga
===================================================================
(Binary files differ)

Modified: trunk/data/gfx/hud/sb_timerbg.tga
===================================================================
(Binary files differ)

Modified: trunk/data/qcsrc/client/sbar.qc
===================================================================
--- trunk/data/qcsrc/client/sbar.qc	2009-06-28 11:51:56 UTC (rev 7120)
+++ trunk/data/qcsrc/client/sbar.qc	2009-06-28 15:38:07 UTC (rev 7121)
@@ -1280,7 +1280,7 @@
 		}
 		else { // move the scores if vid_conwidth < 800
 			place_x = 196;
-			place_y = 86;
+			place_y = 84;
 		}
 		score = me.(scores[ps_primary]);
 
@@ -1288,9 +1288,9 @@
 		{
 			if (distribution != 0) {
 				// draw a + sign in front of the score
-				if (distribution < 10) { drawpic(bottomright - element_offset - place + '132 -5 0' + '32 0 0', "gfx/hud/num_plus", '16 16 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE); }
-				else if (distribution < 100) { drawpic(bottomright - element_offset - place + '132 -5 0' + '16 0 0', "gfx/hud/num_plus", '16 16 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE); }
-				else if (distribution < 1000) { drawpic(bottomright - element_offset - place + '132 -5 0', "gfx/hud/num_plus", '16 16 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE); }
+				if (distribution < 10) { drawpic(bottomright - element_offset - place + '132 -6 0' + '32 0 0', "gfx/hud/num_plus", '16 16 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE); }
+				else if (distribution < 100) { drawpic(bottomright - element_offset - place + '132 -6 0' + '16 0 0', "gfx/hud/num_plus", '16 16 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE); }
+				else if (distribution < 1000) { drawpic(bottomright - element_offset - place + '132 -6 0', "gfx/hud/num_plus", '16 16 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_ADDITIVE); }
 			}
 
 			Sbar_DrawXNum(bottomright - element_offset - place + '132 -6 0', distribution, 4, 16, ' 1 1 1', 0, 0, sbar_alpha_fg, DRAWFLAG_NORMAL);



More information about the nexuiz-commits mailing list