X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fnetradiant.git;a=blobdiff_plain;f=contrib%2Fbobtoolz%2FDPoint.cpp;h=b0b6015388440c76840fca017f95bc799aa3d33a;hp=a56e91f0c67f3602318af1e71a92f863d021e982;hb=6ee91d153ea09f2dafa62ed2f022f4183c090168;hpb=ba55f1bbf627594f91a7e72706655bb71dca4db4 diff --git a/contrib/bobtoolz/DPoint.cpp b/contrib/bobtoolz/DPoint.cpp index a56e91f0..b0b60153 100644 --- a/contrib/bobtoolz/DPoint.cpp +++ b/contrib/bobtoolz/DPoint.cpp @@ -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; }