mirror of https://github.com/PCSX2/pcsx2.git
gsvector: fix forgotten elif during purge
This commit is contained in:
parent
1e60161932
commit
6251c3f8ab
|
@ -492,6 +492,8 @@ public:
|
|||
|
||||
return _mm_testz_ps(m, m) != 0;
|
||||
|
||||
#else
|
||||
|
||||
__m128i a = _mm_castps_si128(m);
|
||||
|
||||
return _mm_testz_si128(a, a) != 0;
|
||||
|
|
Loading…
Reference in New Issue