1
0

A few compiler warning fixes

This commit is contained in:
Chris Darnell
2014-09-22 18:23:56 -04:00
parent 1aa64f32e1
commit 806871b86f
5 changed files with 47 additions and 44 deletions

View File

@@ -283,7 +283,7 @@ int cTracer::intersect3D_SegmentPlane( const Vector3f & a_Origin, const Vector3f
if (fabs(D) < EPSILON)
{
// segment is parallel to plane
if (N == 0)
if (N == 0.0)
{
// segment lies in plane
return 2;