From 912e43e9795309de675faefd628b209a27af8add Mon Sep 17 00:00:00 2001 From: gdkchan Date: Mon, 6 Jan 2020 18:52:47 -0300 Subject: Remove some unused args on the shader translator --- Ryujinx.Graphics.Shader/Instructions/InstEmitFlow.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Ryujinx.Graphics.Shader/Instructions/InstEmitFlow.cs') diff --git a/Ryujinx.Graphics.Shader/Instructions/InstEmitFlow.cs b/Ryujinx.Graphics.Shader/Instructions/InstEmitFlow.cs index c024fe02..0b96d751 100644 --- a/Ryujinx.Graphics.Shader/Instructions/InstEmitFlow.cs +++ b/Ryujinx.Graphics.Shader/Instructions/InstEmitFlow.cs @@ -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); -- cgit v1.2.3