mirror of
https://github.com/Ryujinx/SDL2-CS.git
synced 2025-01-10 18:05:36 +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 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
|
||||
);
|
||||
|
|
Loading…
Reference in a new issue