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:
parent
5fc790fd1d
commit
bbda84cafb
@ -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…
x
Reference in New Issue
Block a user