mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 22:23:51 +00:00
Another way of getting M_PI
This commit is contained in:
parent
dc2fefffc7
commit
6ea29812ac
1 changed files with 6 additions and 4 deletions
|
@ -1,4 +1,10 @@
|
||||||
#include "worldimp.hpp"
|
#include "worldimp.hpp"
|
||||||
|
|
||||||
|
#ifdef _WIN32 // For M_PI
|
||||||
|
#define _USE_MATH_DEFINES
|
||||||
|
#include <cmath>
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
#include <boost/tr1/tr1/unordered_map>
|
#include <boost/tr1/tr1/unordered_map>
|
||||||
#elif defined HAVE_UNORDERED_MAP
|
#elif defined HAVE_UNORDERED_MAP
|
||||||
|
@ -52,10 +58,6 @@
|
||||||
#include "esmloader.hpp"
|
#include "esmloader.hpp"
|
||||||
#include "omwloader.hpp"
|
#include "omwloader.hpp"
|
||||||
|
|
||||||
#ifdef _WIN32
|
|
||||||
#define M_PI 3.14159 // Windows doesn't have this
|
|
||||||
#endif
|
|
||||||
|
|
||||||
using namespace Ogre;
|
using namespace Ogre;
|
||||||
|
|
||||||
namespace
|
namespace
|
||||||
|
|
Loading…
Reference in a new issue