Fixed error with IsWindowFullscreen.
- Changed IsWindowFullscreen return from void to bool.
This commit is contained in:
parent
5fc790fd1d
commit
bbda84cafb
1 changed files with 2 additions and 1 deletions
|
|
@ -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)]
|
||||
|
|
|
|||
Loading…
Reference in a new issue