This commit is contained in:
Christoph Oelckers 2016-01-16 16:31:20 +01:00
commit e6b6fd799d
1 changed files with 1 additions and 1 deletions

View File

@ -985,7 +985,7 @@ void FPathTraverse::AddLineIntercepts(int bx, int by)
P_MakeDivline (ld, &dl); P_MakeDivline (ld, &dl);
frac = P_InterceptVector (&trace, &dl); frac = P_InterceptVector (&trace, &dl);
if (frac < 0 || frac > 1) continue; // behind source or beyond end point if (frac < 0 || frac > FRACUNIT) continue; // behind source or beyond end point
intercept_t newintercept; intercept_t newintercept;