From 05a1133e4a1b50ed35a6e2fdd947e6dc54654d1e Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Mon, 25 Jan 2021 12:05:08 +0000 Subject: [PATCH] Fix bug with LoadFileData and LoadFontData - Changed return of LoadFileData from byte[] to IntPtr as it cannot Marshal as a byte[]. - Adding missing dataSize argument to LoadFontData. --- Raylib-cs/Raylib.cs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Raylib-cs/Raylib.cs b/Raylib-cs/Raylib.cs index 91d1dd7..3b7aba9 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -1185,8 +1185,9 @@ namespace Raylib_cs // Files management functions // Load file data as byte array (read) + // IntPtr refers to unsigned char * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern byte[] LoadFileData(string fileName, ref int bytesRead); + public static extern IntPtr LoadFileData(string fileName, ref int bytesRead); // Save data to file from byte array (write) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] @@ -2090,7 +2091,7 @@ namespace Raylib_cs // fileData refers to const unsigned char * // IntPtr refers to CharInfo * [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern IntPtr LoadFontData(IntPtr fileData, int fontSize, int[] fontChars, int charsCount, FontType type); + public static extern IntPtr LoadFontData(IntPtr fileData, int dataSize, int fontSize, int[] fontChars, int charsCount, FontType type); // Generate image font atlas using chars info [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]