diff options
author | andrew <xdotftw@gmail.com> | 2014-03-12 15:13:03 +0100 |
---|---|---|
committer | andrew <xdotftw@gmail.com> | 2014-03-12 15:13:03 +0100 |
commit | 6f2bb0ad44592ac42334dc627afd3ad734b7a4ab (patch) | |
tree | 4a8325698b991990c80455933dd3bb0411f1521b | |
parent | Vector3: Length() should always return a float (diff) | |
download | cuberite-6f2bb0ad44592ac42334dc627afd3ad734b7a4ab.tar cuberite-6f2bb0ad44592ac42334dc627afd3ad734b7a4ab.tar.gz cuberite-6f2bb0ad44592ac42334dc627afd3ad734b7a4ab.tar.bz2 cuberite-6f2bb0ad44592ac42334dc627afd3ad734b7a4ab.tar.lz cuberite-6f2bb0ad44592ac42334dc627afd3ad734b7a4ab.tar.xz cuberite-6f2bb0ad44592ac42334dc627afd3ad734b7a4ab.tar.zst cuberite-6f2bb0ad44592ac42334dc627afd3ad734b7a4ab.zip |
-rw-r--r-- | src/Matrix4.h | 2 | ||||
-rw-r--r-- | src/Vector3.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Matrix4.h b/src/Matrix4.h index a20c019e9..456677f0f 100644 --- a/src/Matrix4.h +++ b/src/Matrix4.h @@ -3,7 +3,7 @@ - +#define _USE_MATH_DEFINES // Enable non-standard math defines (MSVC) #include <math.h> diff --git a/src/Vector3.h b/src/Vector3.h index 80583879a..b7a810fc5 100644 --- a/src/Vector3.h +++ b/src/Vector3.h @@ -3,7 +3,7 @@ - +#define _USE_MATH_DEFINES // Enable non-standard math defines (MSVC) #include <math.h> |