mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 23:01:59 +00:00
Fixed "if (!(lhs ~== rhs))" breaking with vectors.
This commit is contained in:
parent
2d1c7ba17c
commit
1b106d109d
1 changed files with 17 additions and 2 deletions
|
@ -135,8 +135,23 @@ private:
|
||||||
cc.movsd(epsilonXmm, epsilon);
|
cc.movsd(epsilonXmm, epsilon);
|
||||||
cc.ucomisd(epsilonXmm, tmp);
|
cc.ucomisd(epsilonXmm, tmp);
|
||||||
|
|
||||||
if (check) cc.ja(fail);
|
if (check)
|
||||||
else cc.jna(fail);
|
{
|
||||||
|
cc.jp(success);
|
||||||
|
if (i == (N - 1))
|
||||||
|
{
|
||||||
|
cc.ja(fail);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
cc.jna(success);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
cc.jp(fail);
|
||||||
|
cc.jna(fail);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue