aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/Shader/ShaderIrAsg.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics/Gal/Shader/ShaderIrAsg.cs')
-rw-r--r--Ryujinx.Graphics/Gal/Shader/ShaderIrAsg.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Ryujinx.Graphics/Gal/Shader/ShaderIrAsg.cs b/Ryujinx.Graphics/Gal/Shader/ShaderIrAsg.cs
index 00f8f6a5..53871a14 100644
--- a/Ryujinx.Graphics/Gal/Shader/ShaderIrAsg.cs
+++ b/Ryujinx.Graphics/Gal/Shader/ShaderIrAsg.cs
@@ -5,10 +5,10 @@ namespace Ryujinx.Graphics.Gal.Shader
public ShaderIrNode Dst { get; set; }
public ShaderIrNode Src { get; set; }
- public ShaderIrAsg(ShaderIrNode Dst, ShaderIrNode Src)
+ public ShaderIrAsg(ShaderIrNode dst, ShaderIrNode src)
{
- this.Dst = Dst;
- this.Src = Src;
+ Dst = dst;
+ Src = src;
}
}
} \ No newline at end of file