Pixel Shift In FalloutNV

fixing bugs
  • Author
  • Message
Offline
User avatar
*blah-blah-blah maniac*
Posts: 17427
Joined: 27 Dec 2011, 08:53
Location: Rather not to say

Re: Pixel Shift In FalloutNV

Try then open enbeffect.fx with any text editor, find these lines:

Code: Select all

sampler2D _s0 = sampler_state

Code: Select all

sampler2D _s1 = sampler_state
and replace them by the following accordingly:

Code: Select all

sampler2D _s0 : register(s0) = sampler_state

Code: Select all

sampler2D _s1 : register(s1) = sampler_state
And where its written

Code: Select all

MinFilter = POINT;//
MagFilter = POINT;//
replace to these:

Code: Select all

MinFilter = LINEAR;
MagFilter = LINEAR;
_________________
i9-9900k, 64Gb RAM, RTX 3060 12Gb, Win7
Post Reply