From f87b913f0e214723f6dfeb872a44748694ce212d Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Fri, 13 Jun 2014 18:36:54 +0000 Subject: [PATCH] Fix the vertexloader on non-x86 targets. When I dropped ARM from a generic target, this caused the vertexloader to try using the JIT path. Instead of !_M_GENERIC, check for _M_X86 instead. Since it is only for the x86 target --- Source/Core/VideoCommon/VertexLoader.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/VideoCommon/VertexLoader.h b/Source/Core/VideoCommon/VertexLoader.h index 5e140613fd..407a20edc8 100644 --- a/Source/Core/VideoCommon/VertexLoader.h +++ b/Source/Core/VideoCommon/VertexLoader.h @@ -17,7 +17,7 @@ #include "VideoCommon/DataReader.h" #include "VideoCommon/NativeVertexFormat.h" -#ifndef _M_GENERIC +#ifdef _M_X86 #ifndef __APPLE__ #define USE_VERTEX_LOADER_JIT #endif