From 23cb3b2baef37f995fe54df564e8889e348c3a0d Mon Sep 17 00:00:00 2001 From: samfromdeath Date: Thu, 21 Feb 2019 17:58:08 +1100 Subject: [PATCH] || to && --- Ryujinx.Graphics/Gal/GalPipelineState.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.Graphics/Gal/GalPipelineState.cs b/Ryujinx.Graphics/Gal/GalPipelineState.cs index 3b672b011b..5c510e21d3 100644 --- a/Ryujinx.Graphics/Gal/GalPipelineState.cs +++ b/Ryujinx.Graphics/Gal/GalPipelineState.cs @@ -21,7 +21,7 @@ namespace Ryujinx.Graphics.Gal public bool Equals(ColorMaskState other) { - return other.Red != Red || other.Green != Green || other.Blue != Blue || other.Alpha != Alpha; + return other.Red == Red && other.Green == Green && other.Blue == Blue && other.Alpha == Alpha; } }