From: black <black@d7cf8633-e32d-0410-b094-e92efae38249>
Date: Wed, 2 Feb 2005 21:14:52 +0000 (+0000)
Subject: Commented out the printing of the weapon number in the weapon selection.
X-Git-Tag: xonotic-v0.1.0preview~5171
X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=28b09a77de746ef92aec2b56ba1ce705519b4d6b;p=xonotic%2Fdarkplaces.git

Commented out the printing of the weapon number in the weapon selection.


git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4990 d7cf8633-e32d-0410-b094-e92efae38249
---

diff --git a/sbar.c b/sbar.c
index acc7f526..24f96340 100644
--- a/sbar.c
+++ b/sbar.c
@@ -525,7 +525,7 @@ static void Sbar_DrawWeapon(int nr, float fade, int active)
 	const float w_scale = 0.4;
 
 	DrawQ_Pic(vid.conwidth - (w_width + w_space) * w_scale, (w_height + w_space) * w_scale * nr + w_space, sb_weapons[0][nr]->name, w_width * w_scale, w_height * w_scale, (active) ? 1 : 0.6, active ? 1 : 0.6, active ? 1 : 1, fade * sbar_alpha_fg.value, DRAWFLAG_ADDITIVE);
-	DrawQ_String(vid.conwidth - (w_space + font_size ), (w_height + w_space) * w_scale * nr + w_space, va("%i",nr+1), 0, font_size, font_size, 1, 0, 0, fade, 0);
+	//DrawQ_String(vid.conwidth - (w_space + font_size ), (w_height + w_space) * w_scale * nr + w_space, va("%i",nr+1), 0, font_size, font_size, 1, 0, 0, fade, 0);
 
 	if (active)
 		DrawQ_Fill(vid.conwidth - (w_width + w_space) * w_scale, (w_height + w_space) * w_scale * nr + w_space, w_width * w_scale, w_height * w_scale, 0.3, 0.3, 0.3, fade * sbar_alpha_fg.value, DRAWFLAG_ADDITIVE);