diff options
| author | Scott Mansell <phiren@gmail.com> | 2016-06-26 23:01:02 +1200 |
|---|---|---|
| committer | Scott Mansell <phiren@gmail.com> | 2016-06-26 23:10:31 +1200 |
| commit | d958388617fe16cc44b385658a4e44dfc9ae39e7 (patch) | |
| tree | d9bd67fa74aea5e95c3269d39d803e94165f6650 /Source/Core/VideoCommon/PixelShaderGen.cpp | |
| parent | b16333a25cc0d8396f71fa1e410484026adea964 (diff) | |
VideoCommon: Fix some warnings.
Diffstat (limited to 'Source/Core/VideoCommon/PixelShaderGen.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/PixelShaderGen.cpp | 4 |
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], |
