This commit is contained in:
samfromdeath 2019-02-21 17:58:08 +11:00
commit 23cb3b2bae

View file

@ -21,7 +21,7 @@ namespace Ryujinx.Graphics.Gal
public bool Equals(ColorMaskState other) 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;
} }
} }