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