From f95135686eda29b8677b53e782c849ac2a7a7e37 Mon Sep 17 00:00:00 2001 From: Erik Schilling Date: Sun, 7 Apr 2013 00:08:46 +0200 Subject: Fixed undefined #defines in mingw and c++0x It looks like mingw does not define all the stuff in c++0x it does without. --- src/game-server/collisiondetection.cpp | 3 +++ 1 file changed, 3 insertions(+) (limited to 'src/game-server/collisiondetection.cpp') diff --git a/src/game-server/collisiondetection.cpp b/src/game-server/collisiondetection.cpp index bf8c7ce3..562f4407 100644 --- a/src/game-server/collisiondetection.cpp +++ b/src/game-server/collisiondetection.cpp @@ -27,6 +27,9 @@ #define D_TO_R 0.0174532925 // PI / 180 #define R_TO_D 57.2957795 // 180 / PI +#ifndef M_PI +#define M_PI 3.14159265358979323846 +#endif // Tests to see if pos is between s1 degree and s2 #define test_degrees(pos,s1,s2) (pos > s1 && pos < s2) || (s1 > s2 && !(pos < s1 && pos > s2)) -- cgit v1.2.3-70-g09d2