Merge pull request #131 from lioncash/gsdx-wat

GSDX: Replace an FLT_MAX with the appropriate ULONG_MAX
This commit is contained in:
sudonim1 2014-07-15 12:04:14 +01:00
commit d3ebdae159
1 changed files with 1 additions and 1 deletions

View File

@ -220,7 +220,7 @@ void GSDevice9::SetupPS(PSSelector sel, const PSConstantBuffer* cb, PSSamplerSel
ss->AddressU = ssel.tau ? D3DTADDRESS_WRAP : D3DTADDRESS_CLAMP;
ss->AddressV = ssel.tav ? D3DTADDRESS_WRAP : D3DTADDRESS_CLAMP;
ss->MaxAnisotropy = theApp.GetConfig("MaxAnisotropy", 0);
ss->MaxLOD = FLT_MAX;
ss->MaxLOD = ULONG_MAX;
m_ps_ss[ssel] = ss;