Missing check
This commit is contained in:
parent
e872182f7b
commit
13fbeb5f56
1 changed files with 1 additions and 1 deletions
|
@ -308,7 +308,7 @@ namespace Ryujinx.Graphics.Gal.OpenGL
|
|||
|
||||
if (New.ColorMaskCommon)
|
||||
{
|
||||
if (!New.ColorMasks[0].Equals(Old.ColorMasks[0]))
|
||||
if (New.ColorMaskCommon != Old.ColorMaskCommon || !New.ColorMasks[0].Equals(Old.ColorMasks[0]))
|
||||
{
|
||||
GL.ColorMask(
|
||||
New.ColorMasks[0].Red,
|
||||
|
|
Loading…
Add table
Reference in a new issue