mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-11 18:50:46 +00:00
MSVC build fix.
git-svn-id: https://svn.eduke32.com/eduke32@5013 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
cde502d511
commit
5e0bed4c39
1 changed files with 1 additions and 1 deletions
|
@ -418,7 +418,7 @@ FORCE_INLINE uint64_t B_UNBUF64(const uint8_t *buf)
|
|||
((uint64_t)buf[4] << 32) | (buf[3] << 24) | (buf[2] << 16) | (buf[1] << 8) | (buf[0]);
|
||||
}
|
||||
|
||||
#if defined BITNESS64 && defined __SSE2__
|
||||
#if defined BITNESS64 && (defined __SSE2__ || defined _MSC_VER)
|
||||
#include <emmintrin.h>
|
||||
FORCE_INLINE int32_t Blrintf(const float x)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue