Added x64 check for SSE Intrinsic functions

This commit is contained in:
Marc Chapman 2016-09-02 04:47:01 +01:00
parent bcb56a027d
commit 00cf5ab577
5 changed files with 5 additions and 5 deletions

View file

@ -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>