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:
parent
d37f31bf68
commit
92204bbe48
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue