Buildfix for sse2 builds.

This commit is contained in:
Sacha 2013-11-13 12:08:46 +10:00
parent 08803c101e
commit 04b338f39e
3 changed files with 4 additions and 2 deletions

View File

@ -36,7 +36,7 @@
#undef _interlockedbittestandreset64
#else
#if !defined(_M_GENERIC) && !defined(MIPS)
#ifdef _M_SSE
#include <xmmintrin.h>
#endif

View File

@ -146,6 +146,8 @@ private:
# define _M_SSE 0x301
# elif defined __SSE3__
# define _M_SSE 0x300
# elif defined __SSE2__
# define _M_SSE 0x200
# endif
#elif ((_MSC_VER >= 1500) || __INTEL_COMPILER) // Visual Studio 2008
# define _M_SSE 0x402

View File

@ -704,7 +704,7 @@ inline bool TextureCache::TexCacheEntry::Matches(u16 dim2, u8 format2, int maxLe
void TextureCache::LoadClut() {
u32 clutAddr = gstate.getClutAddress();
if (Memory::IsValidAddress(clutAddr)) {
#if defined(_M_IX86) || defined(_M_X64)
#ifdef _M_SSE
int numBlocks = gstate.getClutLoadBlocks();
clutTotalBytes_ = numBlocks * 32;
const __m128i *source = (const __m128i *)Memory::GetPointerUnchecked(clutAddr);