mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-01-25 16:51:04 +00:00
Fix some small type issues.
This commit is contained in:
parent
6a2149398e
commit
e22aa09e4d
|
@ -452,7 +452,7 @@ namespace SDL2
|
||||||
int y,
|
int y,
|
||||||
int w,
|
int w,
|
||||||
int h,
|
int h,
|
||||||
uint flags
|
SDL_WindowFlags flags
|
||||||
);
|
);
|
||||||
|
|
||||||
/* window and renderer refer to an SDL_Window* and SDL_Renderer* */
|
/* window and renderer refer to an SDL_Window* and SDL_Renderer* */
|
||||||
|
@ -3270,11 +3270,10 @@ namespace SDL2
|
||||||
);
|
);
|
||||||
|
|
||||||
/* Create a cursor from an SDL_Surface */
|
/* Create a cursor from an SDL_Surface */
|
||||||
/* surface is an SDL_Surface pointer */
|
|
||||||
/* return value is an SDL_Cursor pointer */
|
/* return value is an SDL_Cursor pointer */
|
||||||
[DllImport(nativeLibName)]
|
[DllImport(nativeLibName)]
|
||||||
public static extern IntPtr SDL_CreateColorCursor(
|
public static extern IntPtr SDL_CreateColorCursor(
|
||||||
IntPtr surface,
|
SDL_Surface surface,
|
||||||
int hot_x,
|
int hot_x,
|
||||||
int hot_y
|
int hot_y
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in a new issue