]> git.xonotic.org Git - xonotic/netradiant.git/blobdiff - contrib/bobtoolz/DPoint.cpp
Merge branch 'NateEag-master-patch-12920' into 'master'
[xonotic/netradiant.git] / contrib / bobtoolz / DPoint.cpp
index a9eeca213c2008fdc20e79b71f09e577f3a38ae6..58628e62c8fd78a53dda29e8c62aa5062dc88481 100644 (file)
@@ -21,8 +21,8 @@
 //
 //////////////////////////////////////////////////////////////////////
 
-#include "StdAfx.h"
 #include "DPoint.h"
+#include "misc.h"
 
 //////////////////////////////////////////////////////////////////////
 // Construction/Destruction
@@ -44,7 +44,7 @@ bool DPoint::operator ==( vec3_t other ){
        vec3_t test;
        VectorSubtract( other, _pnt, test );
        if ( fabs( VectorLength( test ) ) > MAX_ROUND_ERROR ) {
-               return FALSE;
+               return false;
        }
-       return TRUE;
+       return true;
 }