Skip to content

Commit

Permalink
Fix for Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Blackbird88 committed Sep 24, 2024
1 parent dc9bd5a commit 287d28d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pcsx2/GS/Renderers/HW/GSRendererHW.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2479,19 +2479,19 @@ void GSRendererHW::Draw()
MIP_CLAMP.MAXU >>= m_lod.x;
MIP_CLAMP.MAXV >>= m_lod.x;

for (int i = 0; i < m_lod.x; i++)
for (int i = 0; i < m_lod.x; i++)
{
m_vt.m_min.t *= 0.5f;
m_vt.m_max.t *= 0.5f;
}
}
else
{
hash_lod_range = GSVector2i(0, mxl);
TEX0 = m_cached_ctx.TEX0;
}
{
m_vt.m_min.t *= 0.5f;
m_vt.m_max.t *= 0.5f;
hash_lod_range = GSVector2i(0, mxl);
TEX0 = m_cached_ctx.TEX0;
}
else

GL_CACHE("Mipmap LOD %d %d (%f %f) new size %dx%d (K %d L %u)", m_lod.x, m_lod.y, m_vt.m_lod.x, m_vt.m_lod.y,
(1 << m_cached_ctx.TEX0.TW) >> m_lod.x, (1 << m_cached_ctx.TEX0.TH) >> m_lod.x, m_context->TEX1.K, m_context->TEX1.L);
Expand Down

0 comments on commit 287d28d

Please sign in to comment.