Rasterizer: Fixed a warning in GetWrappedTexCoord.
Redeclaring the variable inside the switch was causing weird behavior.
This commit is contained in:
parent
ec8f2210e3
commit
5410367ebf
|
@ -266,10 +266,10 @@ static void ProcessTriangleInternal(const VertexShader::OutputVertex& v0,
|
||||||
|
|
||||||
case Regs::TextureConfig::MirroredRepeat:
|
case Regs::TextureConfig::MirroredRepeat:
|
||||||
{
|
{
|
||||||
int val = (int)((unsigned)val % (2 * size));
|
int coord = (int)((unsigned)val % (2 * size));
|
||||||
if (val >= size)
|
if (coord >= size)
|
||||||
val = 2 * size - 1 - val;
|
coord = 2 * size - 1 - coord;
|
||||||
return val;
|
return coord;
|
||||||
}
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
|
|
Reference in New Issue