From d97392d62862fd1cb8994128ced9b3b1385f3293 Mon Sep 17 00:00:00 2001 From: havoc Date: Mon, 16 Jul 2007 02:31:05 +0000 Subject: [PATCH] don't draw score info in viewsize 120 git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@7490 d7cf8633-e32d-0410-b094-e92efae38249 --- sbar.c | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/sbar.c b/sbar.c index b2161695..39b03c03 100644 --- a/sbar.c +++ b/sbar.c @@ -1542,16 +1542,15 @@ void Sbar_Draw (void) Sbar_DrawNum (248, 0, cl.stats[STAT_AMMO], 3, cl.stats[STAT_AMMO] <= 10); - } - - // LordHavoc: changed to draw the deathmatch overlays in any multiplayer mode - if ((!cl.islocalgame || cl.gametype != GAME_COOP)) - { - if (gamemode == GAME_TRANSFUSION) - Sbar_MiniDeathmatchOverlay (0, 0); - else - Sbar_MiniDeathmatchOverlay (sbar_x + 324, vid_conheight.integer - 8*8); - Sbar_Score(24); + // LordHavoc: changed to draw the deathmatch overlays in any multiplayer mode + if ((!cl.islocalgame || cl.gametype != GAME_COOP)) + { + if (gamemode == GAME_TRANSFUSION) + Sbar_MiniDeathmatchOverlay (0, 0); + else + Sbar_MiniDeathmatchOverlay (sbar_x + 324, vid_conheight.integer - 8*8); + Sbar_Score(24); + } } } } -- 2.39.2