diff options
author | Tony Wasserka <neobrainx@gmail.com> | 2015-02-19 10:57:54 +0100 |
---|---|---|
committer | Tony Wasserka <neobrainx@gmail.com> | 2015-02-19 10:57:54 +0100 |
commit | 4cc1a71441a7a6c339f8680772caf7c8c45ca32d (patch) | |
tree | b6700575b6dcc5069be7995ec927e10ab044fdc2 /src/video_core/rasterizer.cpp | |
parent | ec8f2210e3d437b93313f2565170fde393fcaae5 (diff) | |
parent | 5410367ebfc01317b4f61124818330b43a765436 (diff) |
Merge pull request #585 from Subv/local_var
Rasterizer: Fixed a warning in GetWrappedTexCoord.
Diffstat (limited to 'src/video_core/rasterizer.cpp')
-rw-r--r-- | src/video_core/rasterizer.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/video_core/rasterizer.cpp b/src/video_core/rasterizer.cpp index 94873f406..81df09baf 100644 --- a/src/video_core/rasterizer.cpp +++ b/src/video_core/rasterizer.cpp @@ -266,10 +266,10 @@ static void ProcessTriangleInternal(const VertexShader::OutputVertex& v0, case Regs::TextureConfig::MirroredRepeat: { - int val = (int)((unsigned)val % (2 * size)); - if (val >= size) - val = 2 * size - 1 - val; - return val; + int coord = (int)((unsigned)val % (2 * size)); + if (coord >= size) + coord = 2 * size - 1 - coord; + return coord; } default: |