mirror of https://github.com/PCSX2/pcsx2.git
Merge pull request #131 from lioncash/gsdx-wat
GSDX: Replace an FLT_MAX with the appropriate ULONG_MAX
This commit is contained in:
commit
d3ebdae159
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue