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
+}