From 4ce55fba660f1f8fbb9722fe4d505af47d45dd39 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Sat, 4 Dec 2021 08:32:12 +0000 Subject: [PATCH] Fix typo in Rlgl --- Raylib-cs/Rlgl.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Raylib-cs/Rlgl.cs b/Raylib-cs/Rlgl.cs index 0642c81..da4f712 100644 --- a/Raylib-cs/Rlgl.cs +++ b/Raylib-cs/Rlgl.cs @@ -365,7 +365,7 @@ namespace Raylib_cs /// Set blending mode factor and equation (using OpenGL factors) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void rlSetBlendModeFactors(int glSrcFactor, int glDstFactor, int glEquation); + public static extern void rlSetBlendFactors(int glSrcFactor, int glDstFactor, int glEquation); // ------------------------------------------------------------------------------------