2
0
mirror of https://github.com/raylib-cs/raylib-cs synced 2025-04-03 11:09:40 -04:00

Fixed error with IsWindowFullscreen.

- Changed IsWindowFullscreen return from void to bool.
This commit is contained in:
ChrisDill 2020-04-27 17:46:22 +01:00
parent 5fc790fd1d
commit bbda84cafb

View File

@ -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)]