From 5e8b6da539560bb1f44f515db8f22eedb71e7ea6 Mon Sep 17 00:00:00 2001 From: Caball009 <82909616+Caball009@users.noreply.github.com> Date: Tue, 10 Jun 2025 17:47:18 +0200 Subject: [PATCH] Fixed bugs in comparison expression. --- Core/Libraries/Source/WWVegas/WWMath/obbox.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Core/Libraries/Source/WWVegas/WWMath/obbox.h b/Core/Libraries/Source/WWVegas/WWMath/obbox.h index 53880c2ebd4..82211d885aa 100644 --- a/Core/Libraries/Source/WWVegas/WWMath/obbox.h +++ b/Core/Libraries/Source/WWVegas/WWMath/obbox.h @@ -265,7 +265,7 @@ inline bool OBBoxClass::operator== (const OBBoxClass &src) *=============================================================================================*/ inline bool OBBoxClass::operator!= (const OBBoxClass &src) { - return (Center != src.Center) || (Extent != src.Extent) && (Basis == src.Basis); + return (Center != src.Center) || (Extent != src.Extent) || (Basis != src.Basis); } #endif