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
1 changed files with 8 additions and 1 deletions

View File

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