Code: Select all
fatbytes = (sv.worldmodel->numleafs+31)>>3;
That gives the number of bytes for the bitvector, plus 3 bytes padding, which seems useless.
It should just be (numleafs+7)>>3 like all of the other PVS buffers?
There are some occurences of:
Code: Select all
4*((sv.worldmodel->numleafs+31)>>5);