mirror of https://github.com/PCSX2/pcsx2.git
parent
ec1da2805c
commit
48b3d91768
|
@ -2970,15 +2970,15 @@ public:
|
|||
|
||||
}
|
||||
|
||||
template<int idx> __forceinline int extract32() const
|
||||
template<int i> __forceinline int extract32() const
|
||||
{
|
||||
#if _M_SSE >= 0x401
|
||||
|
||||
return _mm_extract_ps(m, idx);
|
||||
return _mm_extract_ps(m, i);
|
||||
|
||||
#else
|
||||
|
||||
return i32[idx];
|
||||
return i32[i];
|
||||
|
||||
#endif
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue