From e22aa09e4d3f14fdd55769326a358f95ed543ac3 Mon Sep 17 00:00:00 2001 From: David Gow Date: Sun, 7 Apr 2013 19:26:08 +0800 Subject: [PATCH] Fix some small type issues. --- src/SDL2.cs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/SDL2.cs b/src/SDL2.cs index f4d5790..ad2b12c 100644 --- a/src/SDL2.cs +++ b/src/SDL2.cs @@ -452,7 +452,7 @@ namespace SDL2 int y, int w, int h, - uint flags + SDL_WindowFlags flags ); /* window and renderer refer to an SDL_Window* and SDL_Renderer* */ @@ -3270,11 +3270,10 @@ namespace SDL2 ); /* Create a cursor from an SDL_Surface */ - /* surface is an SDL_Surface pointer */ /* return value is an SDL_Cursor pointer */ [DllImport(nativeLibName)] public static extern IntPtr SDL_CreateColorCursor( - IntPtr surface, + SDL_Surface surface, int hot_x, int hot_y );