From 463b2fa9e431b8c0687e7d195358269b65213683 Mon Sep 17 00:00:00 2001 From: ReinUsesLisp Date: Tue, 26 Jun 2018 02:28:52 -0300 Subject: [PATCH] Fix GL.CreateBuffers -> GL.GenBuffers --- Ryujinx.Graphics/Gal/OpenGL/OGLStreamBuffer.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Ryujinx.Graphics/Gal/OpenGL/OGLStreamBuffer.cs b/Ryujinx.Graphics/Gal/OpenGL/OGLStreamBuffer.cs index 3d91b09f78..329c5b5df7 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 +}