diff options
Diffstat (limited to 'Ryujinx.Graphics/Gal/Shader/ShaderIrOperAbuf.cs')
| -rw-r--r-- | Ryujinx.Graphics/Gal/Shader/ShaderIrOperAbuf.cs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Ryujinx.Graphics/Gal/Shader/ShaderIrOperAbuf.cs b/Ryujinx.Graphics/Gal/Shader/ShaderIrOperAbuf.cs index f17d9c0e..1f339e80 100644 --- a/Ryujinx.Graphics/Gal/Shader/ShaderIrOperAbuf.cs +++ b/Ryujinx.Graphics/Gal/Shader/ShaderIrOperAbuf.cs @@ -6,10 +6,10 @@ namespace Ryujinx.Graphics.Gal.Shader public ShaderIrNode Vertex { get; private set; } - public ShaderIrOperAbuf(int Offs, ShaderIrNode Vertex) + public ShaderIrOperAbuf(int offs, ShaderIrNode vertex) { - this.Offs = Offs; - this.Vertex = Vertex; + Offs = offs; + Vertex = vertex; } } }
\ No newline at end of file |
