diff options
Diffstat (limited to 'Ryujinx.Graphics/Gal/Shader/ShaderIrOperCbuf.cs')
-rw-r--r-- | Ryujinx.Graphics/Gal/Shader/ShaderIrOperCbuf.cs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Ryujinx.Graphics/Gal/Shader/ShaderIrOperCbuf.cs b/Ryujinx.Graphics/Gal/Shader/ShaderIrOperCbuf.cs index b040c5c6..9f419bbb 100644 --- a/Ryujinx.Graphics/Gal/Shader/ShaderIrOperCbuf.cs +++ b/Ryujinx.Graphics/Gal/Shader/ShaderIrOperCbuf.cs @@ -7,11 +7,11 @@ namespace Ryujinx.Graphics.Gal.Shader public ShaderIrNode Offs { get; private set; } - public ShaderIrOperCbuf(int Index, int Pos, ShaderIrNode Offs = null) + public ShaderIrOperCbuf(int index, int pos, ShaderIrNode offs = null) { - this.Index = Index; - this.Pos = Pos; - this.Offs = Offs; + Index = index; + Pos = pos; + Offs = offs; } } }
\ No newline at end of file |