summaryrefslogtreecommitdiff
path: root/Source/Core/VideoBackends/Software/TransformUnit.cpp
diff options
context:
space:
mode:
authorPreston Smith <preston.s1993@gmail.com>2016-07-23 06:15:03 -0500
committerPreston Smith <preston.s1993@gmail.com>2016-08-30 18:33:26 -0500
commite0a1ab90274ac09d8164883c5d577f1e2778d14d (patch)
tree85330a9bb74504d91ff031eef27458acbe4b10a7 /Source/Core/VideoBackends/Software/TransformUnit.cpp
parent8f69de51ca35a0bf484687393bbf9b0dee31e131 (diff)
lint fix
Diffstat (limited to 'Source/Core/VideoBackends/Software/TransformUnit.cpp')
-rw-r--r--Source/Core/VideoBackends/Software/TransformUnit.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/VideoBackends/Software/TransformUnit.cpp b/Source/Core/VideoBackends/Software/TransformUnit.cpp
index 6be3142534..baddcb2529 100644
--- a/Source/Core/VideoBackends/Software/TransformUnit.cpp
+++ b/Source/Core/VideoBackends/Software/TransformUnit.cpp
@@ -181,10 +181,10 @@ static void TransformTexCoordRegular(const TexMtxInfo& texinfo, int coordNum, bo
}
// TODO write comment
- if(dst->z == 0.0f)
+ if (dst->z == 0.0f)
{
- if(mat[8] != 0.0f || (xfmem.dualTexTrans.enabled && postMat[8] != 0.0f) ||
- mat[9] != 0.0f || (xfmem.dualTexTrans.enabled && postMat[9] != 0.0f))
+ if (mat[8] != 0.0f || (xfmem.dualTexTrans.enabled && postMat[8] != 0.0f) || mat[9] != 0.0f ||
+ (xfmem.dualTexTrans.enabled && postMat[9] != 0.0f))
{
// TODO test this case more
dst->x = 0.0f;