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; } }