From a8f3ec8184cc0d4203613dbeb6a9b082c202a206 Mon Sep 17 00:00:00 2001 From: lightningterror <18107717+lightningterror@users.noreply.github.com> Date: Wed, 21 May 2025 01:49:55 +0200 Subject: [PATCH] GSClut: Get rid of m_read.dirty assert in GetAlphaMinMax32. Replace it with a log. --- pcsx2/GS/GSClut.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pcsx2/GS/GSClut.cpp b/pcsx2/GS/GSClut.cpp index 57a5401857..433ba23d84 100644 --- a/pcsx2/GS/GSClut.cpp +++ b/pcsx2/GS/GSClut.cpp @@ -462,7 +462,8 @@ void GSClut::GetAlphaMinMax32(int& amin_out, int& amax_out) { // call only after Read32 - pxAssert(!m_read.dirty); + if (m_read.dirty) + GL_INS("GSClut: GetAlphaMinMax32 m_read.dirty"); if (m_read.adirty) {