From af5f059d4ed8921a4efd6acdb264483dfc025ecb Mon Sep 17 00:00:00 2001 From: ReinUsesLisp Date: Tue, 26 Jun 2018 02:30:46 -0300 Subject: [PATCH] Fix GL.CreateBuffers -> GL.GenBuffers (#189) --- 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 3d91b09f7..329c5b5df 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 +}