diff options
Diffstat (limited to 'src/cgame')
-rw-r--r-- | src/cgame/cg_ents.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/cgame/cg_ents.c b/src/cgame/cg_ents.c index 5c7c6cab..674c758c 100644 --- a/src/cgame/cg_ents.c +++ b/src/cgame/cg_ents.c @@ -582,6 +582,10 @@ static void CG_LightFlare( centity_t *cent ) len = VectorLength( delta ); VectorNormalize( delta ); + //flare is too close to camera to be drawn + if( len < es->generic1 ) + return; + //don't bother for flares behind the view plane if( DotProduct( delta, cg.refdef.viewaxis[ 0 ] ) < 0.0 ) return; |