From e0a1ab90274ac09d8164883c5d577f1e2778d14d Mon Sep 17 00:00:00 2001 From: Preston Smith Date: Sat, 23 Jul 2016 06:15:03 -0500 Subject: [PATCH] lint fix --- Source/Core/VideoBackends/Software/TransformUnit.cpp | 6 +++--- 1 file 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;