mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-07-11 06:34:36 +00:00
Added x64 check for SSE Intrinsic functions
This commit is contained in:
parent
bcb56a027d
commit
00cf5ab577
5 changed files with 5 additions and 5 deletions
|
|
@ -21,7 +21,7 @@
|
|||
//-----------------------------------------------------------------------------
|
||||
#include "ts/tsMesh.h"
|
||||
|
||||
#if defined(TORQUE_CPU_X86) && (_MSC_VER >= 1500)
|
||||
#if (defined(TORQUE_CPU_X86) || defined( TORQUE_CPU_X64 )) && (_MSC_VER >= 1500)
|
||||
#include "ts/tsMeshIntrinsics.h"
|
||||
#include <smmintrin.h>
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue