Fix redundant check from the optimization

The drawsegs x range already filters this case out, so this will never be reached.
This commit is contained in:
Sally Coolatta 2022-08-26 17:08:35 -04:00
parent d3cbf0cd6f
commit 4c6109f62d

View file

@ -3001,12 +3001,6 @@ void R_ClipVisSprite(vissprite_t *spr, INT32 x1, INT32 x2, portal_t* portal)
ds = curr->user;
if (!ds->silhouette && !ds->maskedtexturecol)
{
// does not cover sprite
continue;
}
if (ds->portalpass != 66) // unused?
{
if (ds->portalpass > 0 && ds->portalpass <= portalrender)