Revert "[bugfix] DX9::TextureCache: Use max_lod instead of min_lod where necessary."

This reverts commit 6c8a22de24.
This commit is contained in:
NeoBrainX 2013-02-07 21:44:51 +01:00
parent ed0abc9dc5
commit 95d08db46f
1 changed files with 1 additions and 1 deletions

View File

@ -1336,7 +1336,7 @@ void Renderer::SetSamplerState(int stage, int texindex)
float lodbias = (s32)tm0.lod_bias / 32.0f;
D3D::SetSamplerState(stage, D3DSAMP_MIPMAPLODBIAS, *(DWORD*)&lodbias);
D3D::SetSamplerState(stage, D3DSAMP_MAXMIPLEVEL, tm1.max_lod >> 4);
D3D::SetSamplerState(stage, D3DSAMP_MAXMIPLEVEL, tm1.min_lod >> 4);
}
void Renderer::SetInterlacingMode()