From a2321024c7ed51dabb21480a305eef78a2ade0aa Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Mon, 7 Aug 2023 19:57:00 +0100 Subject: [PATCH] Small casing fix --- Raylib-cs/interop/Rlgl.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Raylib-cs/interop/Rlgl.cs b/Raylib-cs/interop/Rlgl.cs index 3c2a405..b71ad16 100644 --- a/Raylib-cs/interop/Rlgl.cs +++ b/Raylib-cs/interop/Rlgl.cs @@ -445,11 +445,11 @@ namespace Raylib_cs /// Initialize rlgl (buffers, shaders, textures, states) [DllImport(NativeLibName, EntryPoint = "rlglInit", CallingConvention = CallingConvention.Cdecl)] - public static extern void glInit(int width, int height); + public static extern void GlInit(int width, int height); /// De-inititialize rlgl (buffers, shaders, textures) [DllImport(NativeLibName, EntryPoint = "rlglClose", CallingConvention = CallingConvention.Cdecl)] - public static extern void glClose(); + public static extern void GlClose(); /// Load OpenGL extensions [DllImport(NativeLibName, EntryPoint = "rlLoadExtensions", CallingConvention = CallingConvention.Cdecl)]