mirror of https://github.com/PCSX2/pcsx2.git
gsdx sw: Fix 16 bits date test on SSE build
AVX Builds were fixed in this commit a1a842b07f
This commit is contained in:
parent
defdd27987
commit
31248da3d1
|
@ -2385,7 +2385,9 @@ void GSDrawScanlineCodeGenerator::TestDestAlpha()
|
||||||
if(m_sel.fpsm == 2)
|
if(m_sel.fpsm == 2)
|
||||||
{
|
{
|
||||||
pxor(xmm0, xmm0);
|
pxor(xmm0, xmm0);
|
||||||
psrld(xmm1, 15);
|
// psrld(xmm1, 15);
|
||||||
|
pslld(xmm1, 16);
|
||||||
|
psrld(xmm1, 31);
|
||||||
pcmpeqd(xmm1, xmm0);
|
pcmpeqd(xmm1, xmm0);
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in New Issue