mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-22 19:31:17 +00:00
Fixed the Vector2/3 != operator.
This commit is contained in:
parent
c3c100bf9f
commit
c8e56f4dda
1 changed files with 8 additions and 1 deletions
|
@ -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);
|
||||||
|
|
Loading…
Reference in a new issue