diff options
author | Christopher Schwarz <lakitu7@gmail.com> | 2009-10-21 22:46:15 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:16:59 +0000 |
commit | aa7a0ecd771b337400b7a7f34ff5c64f678757ea (patch) | |
tree | 4349dad516b8d533e50d29aedc2c727e258082e7 /src/cgame | |
parent | e83ed6ee76cb7884bfc12e8c96920f9de0f70809 (diff) |
* 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
Diffstat (limited to 'src/cgame')
-rw-r--r-- | src/cgame/cg_draw.c | 4 |
1 files changed, 4 insertions, 0 deletions
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++ ) |