Fix a comment.

This commit is contained in:
TJnotJT 2025-06-07 16:47:07 -04:00
parent 8f32b1d606
commit f99bf630b8
1 changed files with 2 additions and 2 deletions

View File

@ -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++)