Remove some unused args on the shader translator

This commit is contained in:
gdkchan 2020-01-06 18:52:47 -03:00 committed by Thog
parent 6407729a1d
commit 912e43e979
4 changed files with 19 additions and 19 deletions

View file

@ -169,10 +169,10 @@ namespace Ryujinx.Graphics.Shader.Instructions
{
case Condition.Equal:
case Condition.EqualUnordered:
return GetZF(context);
return GetZF();
case Condition.NotEqual:
case Condition.NotEqualUnordered:
return context.BitwiseNot(GetZF(context));
return context.BitwiseNot(GetZF());
}
return Const(IrConsts.True);