From 28b09a77de746ef92aec2b56ba1ce705519b4d6b Mon Sep 17 00:00:00 2001 From: black Date: Wed, 2 Feb 2005 21:14:52 +0000 Subject: [PATCH] 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 --- sbar.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.39.2