diff options
| -rw-r--r-- | Ryujinx.Graphics/Gal/OpenGL/OGLStreamBuffer.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.Graphics/Gal/OpenGL/OGLStreamBuffer.cs b/Ryujinx.Graphics/Gal/OpenGL/OGLStreamBuffer.cs index 3d91b09f..329c5b5d 100644 --- a/Ryujinx.Graphics/Gal/OpenGL/OGLStreamBuffer.cs +++ b/Ryujinx.Graphics/Gal/OpenGL/OGLStreamBuffer.cs @@ -83,7 +83,7 @@ namespace Ryujinx.Graphics.Gal.OpenGL { Memory = new byte[MaxSize]; - GL.CreateBuffers(1, out int Handle); + GL.GenBuffers(1, out int Handle); GL.BindBuffer(Target, Handle); @@ -110,4 +110,4 @@ namespace Ryujinx.Graphics.Gal.OpenGL } } } -}
\ No newline at end of file +} |
