0
0
Fork 0
mirror of https://github.com/ryujinx-mirror/ryujinx.git synced 2024-10-18 23:21:41 +00:00

Fix GL.CreateBuffers -> GL.GenBuffers (#189)

This commit is contained in:
ReinUsesLisp 2018-06-26 02:30:46 -03:00 committed by gdkchan
parent 09dfefed1f
commit af5f059d4e

View file

@ -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);