From aa1c1b76e81a28f77691cc062f023d0a06e75326 Mon Sep 17 00:00:00 2001 From: Tyler M <16845057+FireflyX@users.noreply.github.com> Date: Sat, 8 Jun 2019 14:24:18 -0400 Subject: [PATCH] Pretty sure this is a typo. v2.w > v2.w would always be false. --- Bindings/Extensions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Bindings/Extensions.cs b/Bindings/Extensions.cs index ada9a12..513d633 100644 --- a/Bindings/Extensions.cs +++ b/Bindings/Extensions.cs @@ -519,7 +519,7 @@ namespace Raylib public static bool operator !=(Vector4 v1, Vector4 v2) => !(v1 == v2); - public static bool operator >(Vector4 v1, Vector4 v2) => v1.x > v2.x && v1.y > v2.y && v1.z > v2.z && v2.w > v2.w; + public static bool operator >(Vector4 v1, Vector4 v2) => v1.x > v2.x && v1.y > v2.y && v1.z > v2.z && v1.w > v2.w; public static bool operator <(Vector4 v1, Vector4 v2) => v1.x < v2.x && v1.y < v2.y && v1.z < v2.z && v1.w < v2.w; }