[SDL2] Fixed SDL_JoystickGetGUID capitalization

This commit is contained in:
thefiddler 2014-01-02 02:20:51 +01:00
parent a8fb977017
commit 9e4827bf67

View file

@ -301,7 +301,7 @@ namespace OpenTK.Platform.SDL2
public static extern byte JoystickGetButton(IntPtr joystick, int button);
[SuppressUnmanagedCodeSecurity]
[DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_JoystickGetGuid", ExactSpelling = true)]
[DllImport(lib, CallingConvention = CallingConvention.Cdecl, EntryPoint = "SDL_JoystickGetGUID", ExactSpelling = true)]
public static extern JoystickGuid JoystickGetGUID(IntPtr joystick);
[SuppressUnmanagedCodeSecurity]