]> git.xonotic.org Git - xonotic/darkplaces.git/commitdiff
Commented out the printing of the weapon number in the weapon selection.
authorblack <black@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 2 Feb 2005 21:14:52 +0000 (21:14 +0000)
committerblack <black@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 2 Feb 2005 21:14:52 +0000 (21:14 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@4990 d7cf8633-e32d-0410-b094-e92efae38249

sbar.c

diff --git a/sbar.c b/sbar.c
index acc7f52677df303884c9f3038f671250d128ab48..24f9634051f5a4821309c06ec412d77eaeb8f5cf 100644 (file)
--- 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);