Remove some unused args on the shader translator
This commit is contained in:
@ -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);
|
||||
|
Reference in New Issue
Block a user