mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
Fixed the Vector2/3 != operator.
This commit is contained in:
parent
f76109e479
commit
566eb58000
1 changed files with 8 additions and 1 deletions
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue