From: divverent Date: Fri, 2 Jan 2009 13:48:44 +0000 (+0000) Subject: check BoxTouchingPVS, not PointInLeaf X-Git-Tag: xonotic-v0.1.0preview~1973 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=8a22e7f1418633f2433ec2d7eaab09746546c47e;p=xonotic%2Fdarkplaces.git check BoxTouchingPVS, not PointInLeaf git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@8619 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/cl_particles.c b/cl_particles.c index 8f1a05cf..48b26a9b 100644 --- a/cl_particles.c +++ b/cl_particles.c @@ -2468,7 +2468,7 @@ void R_DrawParticles (void) default: if(!cl_particles_novis.integer) if (!r_refdef.viewcache.world_novis) - if(r_refdef.scene.worldmodel->brush.PointInLeaf) + if(r_refdef.scene.worldmodel->brush.BoxTouchingPVS) { vec3_t mins, maxs, unit; VectorSet(unit, 1, 1, 1);