[SDL2] Fixed SDL_JoystickGetGUID capitalization
authorthefiddler <stapostol@gmail.com>
Thu, 2 Jan 2014 01:20:51 +0000 (02:20 +0100)
committerthefiddler <stapostol@gmail.com>
Thu, 2 Jan 2014 01:20:51 +0000 (02:20 +0100)
Source/OpenTK/Platform/SDL2/Sdl2.cs

index 8ad2548..38ebef4 100644 (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]