summaryrefslogtreecommitdiffstatshomepage
path: root/hlsl/yiq_decode.fx
diff options
context:
space:
mode:
author Ryan Holtz <rholtz@batcountryentertainment.com>2011-05-23 01:53:35 +0000
committer Ryan Holtz <rholtz@batcountryentertainment.com>2011-05-23 01:53:35 +0000
commitae9fbbe44df5e8e4469d69f075a03ce8e7579286 (patch)
tree6ea8a1dd4532edc3f84331adbb917183848dce0d /hlsl/yiq_decode.fx
parent93ea1ba81cc17e168b739d2f8f6c4b3c828f7129 (diff)
NTSC fixes, nw
Diffstat (limited to 'hlsl/yiq_decode.fx')
-rw-r--r--hlsl/yiq_decode.fx2
1 files changed, 1 insertions, 1 deletions
diff --git a/hlsl/yiq_decode.fx b/hlsl/yiq_decode.fx
index fbb4bce8796..813c4cb441e 100644
--- a/hlsl/yiq_decode.fx
+++ b/hlsl/yiq_decode.fx
@@ -155,7 +155,7 @@ float4 ps_main(PS_INPUT Input) : COLOR
float2 CoordA = Input.Coord2.zw * RawDims;
float2 CoordB = Input.Coord3.zw * RawDims;
- float W = WValue;
+ float W = WValue * 2.0f;
float T0 = Coord0.x + AValue * Coord0.y + BValue;
float T1 = Coord1.x + AValue * Coord1.y + BValue;
float T2 = Coord2.x + AValue * Coord2.y + BValue;