- Tidy up some of the indentations that were badly resolved in the previous commits merge conflict.

This commit is contained in:
Mitchell Richters 2021-12-13 07:39:01 +11:00
parent 054d81fc8e
commit 2253a418c7

View file

@ -238,12 +238,9 @@ int BunchDrawer::ClipLine(int aline, bool portal)
}
else
{
if (sectStartAngle > startAngle) startAngle = sectStartAngle;
if (sectEndAngle < endAngle) endAngle = sectEndAngle;
if (endAngle <= startAngle)
{
return CL_Skip; // can this even happen?
}
if (sectStartAngle > startAngle) startAngle = sectStartAngle;
if (sectEndAngle < endAngle) endAngle = sectEndAngle;
if (endAngle <= startAngle) return CL_Skip; // can this even happen?
}
}