From 3c61eed52115e7332e8841bb251ded99d60563d6 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Sun, 4 Jun 2023 17:46:03 +0100 Subject: [PATCH] Fix type for GetFileModTime --- Raylib-cs/interop/Raylib.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Raylib-cs/interop/Raylib.cs b/Raylib-cs/interop/Raylib.cs index b29055d..afcc4c6 100644 --- a/Raylib-cs/interop/Raylib.cs +++ b/Raylib-cs/interop/Raylib.cs @@ -613,7 +613,7 @@ namespace Raylib_cs /// Get file modification time (last write time) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern int GetFileModTime(sbyte* fileName); + public static extern long GetFileModTime(sbyte* fileName); // Compression/Encoding functionality