From f99bf630b8fc6bf582088c4f5ab80a922244357b Mon Sep 17 00:00:00 2001 From: TJnotJT Date: Sat, 7 Jun 2025 16:47:07 -0400 Subject: [PATCH] Fix a comment. --- pcsx2/GS/GSState.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pcsx2/GS/GSState.cpp b/pcsx2/GS/GSState.cpp index 493826462b..e1dd0216f9 100644 --- a/pcsx2/GS/GSState.cpp +++ b/pcsx2/GS/GSState.cpp @@ -1719,7 +1719,7 @@ void GSState::FlushPrim() // Fix huge or nan ST coordinates if (PRIM->TME && !PRIM->FST) { - FixHugeSTCoords(); + FixHugeSTCoords(); } // Round fractional parts of ST coords @@ -4372,7 +4372,7 @@ void GSState::FixHugeSTCoordsImpl() if (m_vertex.tail >= m_vertex.maxcount) GrowVertexBuffer(); } - else if (new_index_tail < i) // If new_index_tail == i, don't update indices since no primitives have been culled + else if (new_index_tail < i) // If new_index_tail < i, update indices since primitives have been culled { // Keep the same primitive so shift indices down for (u32 j = 0; j < n; j++)