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