mirror of
https://github.com/ZDoom/Raze.git
synced 2025-03-13 20:42:11 +00:00
- Tidy up some of the indentations that were badly resolved in the previous commits merge conflict.
This commit is contained in:
parent
054d81fc8e
commit
2253a418c7
1 changed files with 3 additions and 6 deletions
|
@ -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?
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue