]> de.git.xonotic.org Git - xonotic/netradiant.git/blobdiff - contrib/bobtoolz/DPoint.cpp
- Updated UFA:Plugin (mattn2)
[xonotic/netradiant.git] / contrib / bobtoolz / DPoint.cpp
index a56e91f0c67f3602318af1e71a92f863d021e982..b0b6015388440c76840fca017f95bc799aa3d33a 100644 (file)
@@ -21,8 +21,8 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 //
 //////////////////////////////////////////////////////////////////////
 
-#include "StdAfx.h"
 #include "DPoint.h"
+#include "misc.h"
 
 //////////////////////////////////////////////////////////////////////
 // Construction/Destruction
@@ -47,6 +47,6 @@ bool DPoint::operator ==(vec3_t other)
        vec3_t test;
        VectorSubtract(other, _pnt, test);
        if(fabs(VectorLength(test)) > MAX_ROUND_ERROR)
-               return FALSE;
-       return TRUE;
+               return false;
+       return true;
 }