From 3ca8ada424b6e83568021bb39e2489f305ea3abb Mon Sep 17 00:00:00 2001 From: Gauvain 'GovanifY' Roussel-Tarbouriech Date: Sat, 19 Jun 2021 22:46:18 +0200 Subject: [PATCH] gs: fix avx2 64bit compile --- pcsx2/GS/Renderers/SW/GSDrawScanlineCodeGenerator.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pcsx2/GS/Renderers/SW/GSDrawScanlineCodeGenerator.h b/pcsx2/GS/Renderers/SW/GSDrawScanlineCodeGenerator.h index 3140546651..253bcb678a 100644 --- a/pcsx2/GS/Renderers/SW/GSDrawScanlineCodeGenerator.h +++ b/pcsx2/GS/Renderers/SW/GSDrawScanlineCodeGenerator.h @@ -63,7 +63,7 @@ class GSDrawScanlineCodeGenerator : public GSCodeGenerator void AlphaBlend(); void WriteFrame(); void ReadPixel(const Ymm& dst, const Ymm& temp, const RegLong& addr); - void WritePixel(const Ymm& src, const Ymm& temp, const RegLong& addr, const Reg32& mask, bool fast, int psm, int fz); + void WritePixel(const Ymm& src, const Ymm& temp, const RegLong& addr, const Xbyak::Reg32& mask, bool fast, int psm, int fz); void WritePixel(const Xmm& src, const RegLong& addr, uint8 i, uint8 j, int psm); void ReadTexel(int pixels, int mip_offset = 0); void ReadTexel(const Ymm& dst, const Ymm& addr, uint8 i);