diff options
Diffstat (limited to 'hlsl/post.fx')
-rw-r--r-- | hlsl/post.fx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hlsl/post.fx b/hlsl/post.fx index 1ef59fcca39..f0babe68bca 100644 --- a/hlsl/post.fx +++ b/hlsl/post.fx @@ -147,7 +147,7 @@ float2 GetAdjustedCoords(float2 coord, float2 centerOffset) coord -= centerOffset; // apply screen scale - coord /= ScreenScale; + coord *= ScreenScale; // un-center coordinates coord += centerOffset; |