diff options
Diffstat (limited to 'Ryujinx.Graphics/Gal/Shader/ShaderIrOperPred.cs')
-rw-r--r-- | Ryujinx.Graphics/Gal/Shader/ShaderIrOperPred.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Graphics/Gal/Shader/ShaderIrOperPred.cs b/Ryujinx.Graphics/Gal/Shader/ShaderIrOperPred.cs index 74cca0ef..6c16a145 100644 --- a/Ryujinx.Graphics/Gal/Shader/ShaderIrOperPred.cs +++ b/Ryujinx.Graphics/Gal/Shader/ShaderIrOperPred.cs @@ -9,9 +9,9 @@ namespace Ryujinx.Graphics.Gal.Shader public int Index { get; set; } - public ShaderIrOperPred(int Index) + public ShaderIrOperPred(int index) { - this.Index = Index; + Index = index; } } }
\ No newline at end of file |