GSdx: Fix mipmap SSE2 code for linear mipmap nearest filter. (#3064)

Fixes a regression introduced in e728a14c19
This commit is contained in:
KrossX 2019-08-16 05:03:05 -03:00 committed by Jonathan Li
parent 9830b2dd98
commit 9b651e44d0
1 changed files with 1 additions and 1 deletions

View File

@ -1765,7 +1765,7 @@ void GSDrawScanlineCodeGenerator::SampleTextureLOD_SSE()
// c[0] = c00 & mask;
// c[1] = (c00 >> 8) & mask;
split16_2x8(xmm5, xmm6, xmm5);
split16_2x8(xmm5, xmm6, xmm6);
}
movdqa(xmm0, ptr[m_sel.lcm ? &m_local.gd->lod.f : &m_local.temp.lod.f]);