- this was missing the double slashes...

This commit is contained in:
Christoph Oelckers 2016-02-05 14:04:28 +01:00
parent c4b1b96484
commit e6337537ed
1 changed files with 1 additions and 1 deletions

View File

@ -937,7 +937,7 @@ void GLMirrorPortal::DrawContents()
int GLMirrorPortal::ClipSeg(seg_t *seg)
{
we cannot use P_PointOnLineSide here because it loses the special meaning of 0 == 'on the line'.
//we cannot use P_PointOnLineSide here because it loses the special meaning of 0 == 'on the line'.
int side1 = DMulScale32(seg->v1->y - linedef->v1->y, linedef->dx, linedef->v1->x - seg->v1->x, linedef->dy);
int side2 = DMulScale32(seg->v2->y - linedef->v1->y, linedef->dx, linedef->v1->x - seg->v2->x, linedef->dy);