mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-19 08:50:48 +00:00
lint fix
This commit is contained in:
parent
8f69de51ca
commit
e0a1ab9027
1 changed files with 3 additions and 3 deletions
|
@ -181,10 +181,10 @@ static void TransformTexCoordRegular(const TexMtxInfo& texinfo, int coordNum, bo
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO write comment
|
// 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) ||
|
if (mat[8] != 0.0f || (xfmem.dualTexTrans.enabled && postMat[8] != 0.0f) || mat[9] != 0.0f ||
|
||||||
mat[9] != 0.0f || (xfmem.dualTexTrans.enabled && postMat[9] != 0.0f))
|
(xfmem.dualTexTrans.enabled && postMat[9] != 0.0f))
|
||||||
{
|
{
|
||||||
// TODO test this case more
|
// TODO test this case more
|
||||||
dst->x = 0.0f;
|
dst->x = 0.0f;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue