Fixed the Vector2/3 != operator.

This commit is contained in:
Chronos Ouroboros 2018-11-14 14:11:46 -02:00 committed by Christoph Oelckers
parent f76109e479
commit 566eb58000

View file

@ -84,8 +84,15 @@ private:
if (check) if (check)
{ {
cc.jp(success); cc.jp(success);
if (i == (N - 1))
{
cc.je(fail);
}
else
{
cc.jne(success); cc.jne(success);
} }
}
else else
{ {
cc.jp(fail); cc.jp(fail);