From 8fa8d74156a0604083114336a5f5338eaf6ca0d3 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Thu, 14 Jan 2021 23:54:08 +0000 Subject: [PATCH] Update TraceLogCallback and INTERNAL_GetGamepadName - Change TraceLogCallback calling convention to Cdecl. - Change INTERNAL_GetGamePadName to private. --- Raylib-cs/Raylib.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Raylib-cs/Raylib.cs b/Raylib-cs/Raylib.cs index a619066..6ed7812 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -840,6 +840,7 @@ namespace Raylib_cs public const int MAX_TOUCH_POINTS = 10; // Callback delegate used in SetTraceLogCallback to allow for custom logging + [UnmanagedFunctionPointer(CallingConvention.Cdecl)] public delegate void TraceLogCallback(TraceLogType logType, string text, IntPtr args); // Returns color with alpha applied, alpha goes from 0.0f to 1.0f @@ -1289,7 +1290,7 @@ namespace Raylib_cs // Return gamepad internal name id [DllImport(nativeLibName, EntryPoint = "GetGamepadName", CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr INTERNAL_GetGamepadName(GamepadNumber gamepad); + private static extern IntPtr INTERNAL_GetGamepadName(GamepadNumber gamepad); public static string GetGamepadName(GamepadNumber gamepad) { return Marshal.PtrToStringAnsi(INTERNAL_GetGamepadName(gamepad));