aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Graphics/Gal/Shader/ShaderIrOperImm.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Graphics/Gal/Shader/ShaderIrOperImm.cs')
-rw-r--r--Ryujinx.Graphics/Gal/Shader/ShaderIrOperImm.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Graphics/Gal/Shader/ShaderIrOperImm.cs b/Ryujinx.Graphics/Gal/Shader/ShaderIrOperImm.cs
index ba2c2c9b..6b23b365 100644
--- a/Ryujinx.Graphics/Gal/Shader/ShaderIrOperImm.cs
+++ b/Ryujinx.Graphics/Gal/Shader/ShaderIrOperImm.cs
@@ -4,9 +4,9 @@ namespace Ryujinx.Graphics.Gal.Shader
{
public int Value { get; private set; }
- public ShaderIrOperImm(int Value)
+ public ShaderIrOperImm(int value)
{
- this.Value = Value;
+ Value = value;
}
}
} \ No newline at end of file