Fix GL.CreateBuffers -> GL.GenBuffers

This commit is contained in:
ReinUsesLisp 2018-06-26 02:28:52 -03:00
parent 09dfefed1f
commit 463b2fa9e4

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);
@ -110,4 +110,4 @@ namespace Ryujinx.Graphics.Gal.OpenGL
}
}
}
}
}