From b16fdc1d485bcc1d38c62ad67442e99a2fee2dab Mon Sep 17 00:00:00 2001 From: gdkchan Date: Sat, 23 Jun 2018 01:24:57 -0300 Subject: [PATCH] OGLShader shouldn't be public (yet) --- Ryujinx.Graphics/Gal/OpenGL/OGLShader.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.Graphics/Gal/OpenGL/OGLShader.cs b/Ryujinx.Graphics/Gal/OpenGL/OGLShader.cs index 1c1c10bb3c..be1bb20b45 100644 --- a/Ryujinx.Graphics/Gal/OpenGL/OGLShader.cs +++ b/Ryujinx.Graphics/Gal/OpenGL/OGLShader.cs @@ -7,7 +7,7 @@ using System.Linq; namespace Ryujinx.Graphics.Gal.OpenGL { - public class OGLShader + class OGLShader { private class ShaderStage : IDisposable {