1
0
Fork 0
forked from fte/fteqw

I'm too lazy.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3228 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2009-06-22 06:38:38 +00:00
parent 2d8dba797a
commit b2429e478a

View file

@ -618,12 +618,12 @@ void SWR_MarkLeaves (void)
return;
}
vis = CM_ClusterPVS (cl.worldmodel, r_viewcluster, NULL);
vis = CM_ClusterPVS (cl.worldmodel, r_viewcluster, NULL, 0);
// may have to combine two clusters because of solid water boundaries
if (r_viewcluster2 != r_viewcluster)
{
memcpy (fatvis, vis, (cl.worldmodel->numleafs+7)/8);
vis = CM_ClusterPVS (cl.worldmodel, r_viewcluster2, NULL);//, cl.worldmodel);
vis = CM_ClusterPVS (cl.worldmodel, r_viewcluster2, NULL, 0);//, cl.worldmodel);
c = (cl.worldmodel->numleafs+31)/32;
for (i=0 ; i<c ; i++)
((int *)fatvis)[i] |= ((int *)vis)[i];