diff --git a/include/Spectre/Math/Vector2.inl b/include/Spectre/Math/Vector2.inl index fee4141..6a0c4a3 100644 --- a/include/Spectre/Math/Vector2.inl +++ b/include/Spectre/Math/Vector2.inl @@ -98,7 +98,7 @@ inline bool operator>(const Vector2& a, const Vector2& b) template inline bool operator>=(const Vector2& a, const Vector2& b) { - return a.x >= b.x && a.y >= b.y + return a.x >= b.x && a.y >= b.y; } // ------------------