Correct SSE2 instructions ifdef, bug #2911655

prompt366 reports that linux build on his athlon (SSE but no
SSE2) is broken because of missing __m128i. Compiler is right
that instructions is from SSE2. Fix the ifdef to match the
code as suggested by prompt366.
This commit is contained in:
riccardom 2009-12-12 16:30:55 +00:00
parent d37f31bf68
commit 92204bbe48
1 changed files with 1 additions and 1 deletions

View File

@ -115,7 +115,7 @@ FORCEINLINE s32 s32floor(float f)
//switched SSE2 functions
//-------------
#ifdef ENABLE_SSE
#ifdef ENABLE_SSE2
template<int NUM>
FORCEINLINE void memset_u16_le(void* dst, u16 val)