From 3909dc28658b7a93a05f8a1533ec0277360444e2 Mon Sep 17 00:00:00 2001 From: David Ludwig Date: Sat, 27 Oct 2012 18:39:09 -0400 Subject: [PATCH] WinRT: made SDL.dll compile for ARM (and not just x86 or x64) --- include/SDL_cpuinfo.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL_cpuinfo.h b/include/SDL_cpuinfo.h index 22d04a7ca..624e9bfff 100644 --- a/include/SDL_cpuinfo.h +++ b/include/SDL_cpuinfo.h @@ -32,7 +32,7 @@ /* Need to do this here because intrin.h has C++ code in it */ /* Visual Studio 2005 has a bug where intrin.h conflicts with winnt.h */ -#if defined(_MSC_VER) && (_MSC_VER >= 1500) +#if defined(_MSC_VER) && (_MSC_VER >= 1500) && (defined(_M_IX86) || defined(_M_X64)) #include #ifndef _WIN64 #define __MMX__