diff options
author | Ben Millwood <thebenmachine@gmail.com> | 2010-12-20 21:32:05 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:49 +0000 |
commit | a8d7b7b686a14b2ed35bdb9e3b2252586bf5d19b (patch) | |
tree | 8233a778db3fd97a907adb18e462200247de59e6 /src | |
parent | 300a31a4bb102740f279987a888c2a25d3764a8f (diff) |
* Don't display location during intermission
Diffstat (limited to 'src')
-rw-r--r-- | src/cgame/cg_draw.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/cgame/cg_draw.c b/src/cgame/cg_draw.c index 7169540d..d4d7d55a 100644 --- a/src/cgame/cg_draw.c +++ b/src/cgame/cg_draw.c @@ -2602,6 +2602,9 @@ static void CG_DrawLocation( rectDef_t *rect, float scale, int textalign, vec4_t float maxX; float tx = rect->x, ty = rect->y; + if( cg.intermissionStarted ) + return; + maxX = rect->x + rect->w; locent = CG_GetPlayerLocation( ); |