summaryrefslogtreecommitdiffstatshomepage
path: root/hlsl/prescale.fx
diff options
context:
space:
mode:
Diffstat (limited to 'hlsl/prescale.fx')
-rw-r--r--hlsl/prescale.fx2
1 files changed, 1 insertions, 1 deletions
diff --git a/hlsl/prescale.fx b/hlsl/prescale.fx
index 419254acd07..2b48a2f9e5a 100644
--- a/hlsl/prescale.fx
+++ b/hlsl/prescale.fx
@@ -67,7 +67,7 @@ VS_OUTPUT vs_main(VS_INPUT Input)
Output.Position.xy *= 2.0f; // zoom
Output.TexCoord = Input.TexCoord;
- // Output.TexCoord += 0.5f / targetDims; // half texel offset correction (DX9)
+ Output.TexCoord += 0.5f / TargetDims; // half texel offset correction (DX9)
return Output;
}