From aa7a0ecd771b337400b7a7f34ff5c64f678757ea Mon Sep 17 00:00:00 2001 From: Christopher Schwarz Date: Wed, 21 Oct 2009 22:46:15 +0000 Subject: * Move teamoverlay out of the common_hud and into the team common huds. Prevents showing when dead (use deadspec for this) and showing in white-on-white colors * Hide teamoverlay when the scoreboard is displayed --- src/cgame/cg_draw.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'src/cgame') diff --git a/src/cgame/cg_draw.c b/src/cgame/cg_draw.c index f77e44a3..6609d153 100644 --- a/src/cgame/cg_draw.c +++ b/src/cgame/cg_draw.c @@ -1647,6 +1647,10 @@ static void CG_DrawTeamOverlay( rectDef_t *rect, float scale, vec4_t color ) if( !cgs.teaminfoReceievedTime ) return; + if( cg.showScores || + cg.predictedPlayerState.pm_type == PM_INTERMISSION ) + return; + pci = cgs.clientinfo + cg.snap->ps.clientNum; for( i = 0; i < MAX_CLIENTS; i++ ) -- cgit