diff options
Diffstat (limited to 'Source/Core/VideoCommon/PixelShaderManager.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/PixelShaderManager.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Source/Core/VideoCommon/PixelShaderManager.cpp b/Source/Core/VideoCommon/PixelShaderManager.cpp index 7799a0abcb..50b58b3c9e 100644 --- a/Source/Core/VideoCommon/PixelShaderManager.cpp +++ b/Source/Core/VideoCommon/PixelShaderManager.cpp @@ -158,9 +158,8 @@ void PixelShaderManager::SetConstants() bpmem.tevindref.getTexCoord(stage) | bpmem.tevindref.getTexMap(stage) << 8 | 1 << 16; // Note: a tevind of zero just happens to be a passthrough, so no need // to set an extra bit. - constants.pack1[i][2] = - bpmem.tevind[i].hex; // TODO: This match shadergen, but videosw will - // always wrap. + constants.pack1[i][2] = bpmem.tevind[i].hex; // TODO: This match shadergen, but videosw + // will always wrap. // The ubershader uses tevind != 0 as a condition whether to calculate texcoords, // even when texture is disabled, instead of the stage < bpmem.genMode.numindstages. |
