From 00f353693e457cf524e89954d5440d07718d805d Mon Sep 17 00:00:00 2001 From: Jameson Ernst Date: Tue, 25 Jun 2013 23:51:05 -0700 Subject: [PATCH] Fixed leftover internal names --- src/SDL2.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/SDL2.cs b/src/SDL2.cs index 2e35107..7255a91 100644 --- a/src/SDL2.cs +++ b/src/SDL2.cs @@ -3545,7 +3545,7 @@ namespace SDL2 /* joystick refers to an SDL_Joystick* */ [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return : MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))] - public static extern string INTERNAL_SDL_JoystickName( + public static extern string SDL_JoystickName( IntPtr joystick ); @@ -3711,7 +3711,7 @@ namespace SDL2 [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] [return : MarshalAs(UnmanagedType.CustomMarshaler, MarshalTypeRef = typeof(LPUtf8StrMarshaler))] - public static extern string INTERNAL_SDL_GameControllerNameForIndex( + public static extern string SDL_GameControllerNameForIndex( int joystick_index );