From 0023c59bd3b07dc73ff48b8e8ba2a57fb0c1bb67 Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Mon, 29 Apr 2013 06:52:32 -0400 Subject: [PATCH] SetWindowFullscreen has more options than a bool --- src/SDL2.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SDL2.cs b/src/SDL2.cs index 4949620..7ef0f15 100644 --- a/src/SDL2.cs +++ b/src/SDL2.cs @@ -838,7 +838,7 @@ namespace SDL2 [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int SDL_SetWindowFullscreen( IntPtr window, - SDL_bool fullscreen + uint flags ); /* window refers to an SDL_Window* */