Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
WinRT: made SDL.dll compile for ARM (and not just x86 or x64)
Browse files Browse the repository at this point in the history
  • Loading branch information
DavidLudwig committed Oct 27, 2012
1 parent 5a78fc7 commit 3909dc2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/SDL_cpuinfo.h
Expand Up @@ -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 <intrin.h>
#ifndef _WIN64
#define __MMX__
Expand Down

0 comments on commit 3909dc2

Please sign in to comment.