From 4a634ca154b07faf59625ba698846fb94800f4ea Mon Sep 17 00:00:00 2001 From: refractionpcsx2 Date: Sat, 5 Mar 2022 16:55:54 +0000 Subject: [PATCH] GS: Fix compilation of GS SW Int Rasterizer --- pcsx2/GS/Renderers/SW/GSDrawScanline.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/GS/Renderers/SW/GSDrawScanline.cpp b/pcsx2/GS/Renderers/SW/GSDrawScanline.cpp index f5799d7078..7a5869821c 100644 --- a/pcsx2/GS/Renderers/SW/GSDrawScanline.cpp +++ b/pcsx2/GS/Renderers/SW/GSDrawScanline.cpp @@ -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))]); } }