mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-23 02:25:38 +01:00
17 lines
683 B
Diff
17 lines
683 B
Diff
dep/g3dlite/source/Matrix4.cpp | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/dep/g3dlite/source/Matrix4.cpp b/dep/g3dlite/source/Matrix4.cpp
|
|
index f3b25ad..0588cb6 100644
|
|
--- a/dep/g3dlite/source/Matrix4.cpp
|
|
+++ b/dep/g3dlite/source/Matrix4.cpp
|
|
@@ -606,7 +606,7 @@ bool Matrix4float64::operator==(const Matrix4float64& other) const {
|
|
// If the bit patterns are identical, they must be
|
|
// the same matrix. If not, they *might* still have
|
|
// equal elements due to floating point weirdness.
|
|
- if (memcmp(this, &other, sizeof(Matrix4float64) == 0)) {
|
|
+ if (memcmp(this, &other, sizeof(Matrix4float64)) == 0) {
|
|
return true;
|
|
}
|
|
|