GS: Fix compilation of GS SW Int Rasterizer

This commit is contained in:
refractionpcsx2 2022-03-05 16:55:54 +00:00
parent bd1f5d0888
commit 4a634ca154
1 changed files with 2 additions and 2 deletions

View File

@ -455,7 +455,7 @@ void GSDrawScanline::DrawScanline(int pixels, int left, int top, const GSVertexS
skip = left & 7;
steps = pixels + skip - 8;
left -= skip;
test = GSVector8i::i8to32c(g_const->m_test_256b[skip]) | GSVector8i::i8to32c(g_const->m_test_256b[15 + (steps & (steps >> 31))]);
test = GSVector8i::i8to32(g_const->m_test_256b[skip]) | GSVector8i::i8to32(g_const->m_test_256b[15 + (steps & (steps >> 31))]);
}
else
{
@ -1561,7 +1561,7 @@ void GSDrawScanline::DrawScanline(int pixels, int left, int top, const GSVertexS
if (!sel.notest)
{
test = GSVector8i::i8to32c(g_const->m_test_256b[15 + (steps & (steps >> 31))]);
test = GSVector8i::i8to32(g_const->m_test_256b[15 + (steps & (steps >> 31))]);
}
}