This commit is contained in:
cslayers 2024-08-22 18:53:19 -04:00 committed by GitHub
commit 8708062e21
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -512,14 +512,14 @@ namespace nv
friend bool operator != (const matrix4 &lhs, const matrix4 &rhs) friend bool operator != (const matrix4 &lhs, const matrix4 &rhs)
{ {
bool r = true;
for (int i = 0; i < 16; i++) for (int i = 0; i < 16; i++)
{ {
r &= lhs._array[i] != rhs._array[i]; if (lhs._array[i] != rhs._array[i])
return true;
} }
return r; return false;
} }
union union