summaryrefslogtreecommitdiffstatshomepage
path: root/hlsl/post.fx
diff options
context:
space:
mode:
Diffstat (limited to 'hlsl/post.fx')
-rw-r--r--hlsl/post.fx2
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;