diff options
author | Sven Gothel <[email protected]> | 2015-07-15 21:12:04 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2015-07-15 21:12:04 +0200 |
commit | 1f262ca2dbe00ba761e9b91994e93fee65d6efc1 (patch) | |
tree | 55c5b013ac5dd5e1edee5cc1ed09739a914de3e0 /LibOVR/Src/Net/OVR_BitStream.h | |
parent | a352ecb7e63304034ac93332cf0c4d9183df867e (diff) |
Fix build for Windows/MingW64 ...
Diffstat (limited to 'LibOVR/Src/Net/OVR_BitStream.h')
-rw-r--r-- | LibOVR/Src/Net/OVR_BitStream.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/LibOVR/Src/Net/OVR_BitStream.h b/LibOVR/Src/Net/OVR_BitStream.h index 4e2d2ef..83c4a32 100644 --- a/LibOVR/Src/Net/OVR_BitStream.h +++ b/LibOVR/Src/Net/OVR_BitStream.h @@ -28,6 +28,9 @@ limitations under the License. #ifndef OVR_Bitstream_h #define OVR_Bitstream_h +#if defined(OVR_CC_MSVC) +#include <float.h> +#endif #include <math.h> #include "Kernel/OVR_Types.h" #include "Kernel/OVR_Std.h" @@ -1557,7 +1560,7 @@ void BitStream::WriteOrthMatrix( if (qx < 0.0) qx=0.0; if (qy < 0.0) qy=0.0; if (qz < 0.0) qz=0.0; -#ifdef OVR_OS_WIN32 +#if defined(OVR_OS_WIN32) && defined(OVR_CC_MSVC) qx = _copysign( (double) qx, (double) (m21 - m12) ); qy = _copysign( (double) qy, (double) (m02 - m20) ); qz = _copysign( (double) qz, (double) (m10 - m01) ); |