Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions utils/pxrad/qrad.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2149,8 +2149,7 @@ static void MakeTransfers( int threadnum )
if( DotProduct( origin1, plane2->normal ) <= PatchPlaneDist( patch2 ) + MINIMUM_PATCH_DISTANCE )
continue;

// we ignore models here, brushes only
if( TestLine( threadnum, origin1, origin2, true ) != CONTENTS_EMPTY )
if( TestLine( threadnum, origin1, origin2, false ) != CONTENTS_EMPTY )
continue;

vispatches[count] = patch2;
Expand Down
Loading