summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/PixelShaderGen.cpp
diff options
context:
space:
mode:
authorScott Mansell <phiren@gmail.com>2016-06-26 23:01:02 +1200
committerScott Mansell <phiren@gmail.com>2016-06-26 23:10:31 +1200
commitd958388617fe16cc44b385658a4e44dfc9ae39e7 (patch)
treed9bd67fa74aea5e95c3269d39d803e94165f6650 /Source/Core/VideoCommon/PixelShaderGen.cpp
parentb16333a25cc0d8396f71fa1e410484026adea964 (diff)
VideoCommon: Fix some warnings.
Diffstat (limited to 'Source/Core/VideoCommon/PixelShaderGen.cpp')
-rw-r--r--Source/Core/VideoCommon/PixelShaderGen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/PixelShaderGen.cpp b/Source/Core/VideoCommon/PixelShaderGen.cpp
index a94cd02c15..61802c2718 100644
--- a/Source/Core/VideoCommon/PixelShaderGen.cpp
+++ b/Source/Core/VideoCommon/PixelShaderGen.cpp
@@ -1016,10 +1016,10 @@ static void WriteStage(ShaderCode& out, const pixel_shader_uid_data* uid_data, i
if (cc.d == TEVCOLORARG_C2 || cc.d == TEVCOLORARG_A2 || ac.d == TEVALPHAARG_A2)
out.SetConstantsUsed(C_COLORS + 3, C_COLORS + 3);
- if (cc.dest >= GX_TEVREG0 && cc.dest <= GX_TEVREG2)
+ if (cc.dest >= GX_TEVREG0)
out.SetConstantsUsed(C_COLORS + cc.dest, C_COLORS + cc.dest);
- if (ac.dest >= GX_TEVREG0 && ac.dest <= GX_TEVREG2)
+ if (ac.dest >= GX_TEVREG0)
out.SetConstantsUsed(C_COLORS + ac.dest, C_COLORS + ac.dest);
out.Write("\ttevin_a = int4(%s, %s)&int4(255, 255, 255, 255);\n", tevCInputTable[cc.a],