From d1b613058d576f38706e565c90de591c63b07e6f Mon Sep 17 00:00:00 2001 From: Henrik Hautakoski Date: Fri, 31 May 2019 15:50:30 +0200 Subject: [PATCH] include/Spectre/Math/Vector2.inl: minor fix. --- include/Spectre/Math/Vector2.inl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } // ------------------