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

@ -65,7 +65,7 @@ MODULE_BEGIN( TSMeshIntrinsics )
// Find the best implementation for the current CPU
if(Platform::SystemInfo.processor.properties & CPU_PROP_SSE)
{
#if defined(TORQUE_CPU_X86)
#if (defined( TORQUE_CPU_X86 ) || defined( TORQUE_CPU_X64 ))
zero_vert_normal_bulk = zero_vert_normal_bulk_SSE;
#endif