mirror of https://github.com/PCSX2/pcsx2.git
GSDX: Replace an FLT_MAX with the appropriate ULONG_MAX
This commit is contained in:
parent
9a950cdca6
commit
637c99a362
|
@ -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