mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2025-02-21 11:01:36 +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,7 +84,14 @@ private:
|
|||
if (check)
|
||||
{
|
||||
cc.jp(success);
|
||||
cc.jne(success);
|
||||
if (i == (N - 1))
|
||||
{
|
||||
cc.je(fail);
|
||||
}
|
||||
else
|
||||
{
|
||||
cc.jne(success);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue