From bbda84cafb06f18913e42336ed7efafd7785a903 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Mon, 27 Apr 2020 17:46:22 +0100 Subject: [PATCH] Fixed error with IsWindowFullscreen. - Changed IsWindowFullscreen return from void to bool. --- 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 1ca8a9f..34c0ebf 100644 --- a/Raylib-cs/Raylib.cs +++ b/Raylib-cs/Raylib.cs @@ -1213,7 +1213,8 @@ namespace Raylib_cs // Check if window is currently fullscreen [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] - public static extern void IsWindowFullscreen(); + [return: MarshalAs(UnmanagedType.I1)] + public static extern bool IsWindowFullscreen(); // Toggle fullscreen mode (only PLATFORM_DESKTOP) [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)]