From 6a28ae85943522cd0987b1ba14b7e584c8df5972 Mon Sep 17 00:00:00 2001 From: Ethan Lee Date: Wed, 8 Jan 2020 12:46:35 -0500 Subject: [PATCH] Fix SDL_AndroidGetExternalStorageState EntryPoint --- src/SDL2.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SDL2.cs b/src/SDL2.cs index a385b58..a15a556 100644 --- a/src/SDL2.cs +++ b/src/SDL2.cs @@ -7163,7 +7163,7 @@ namespace SDL2 [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern int SDL_AndroidGetExternalStorageState(); - [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] + [DllImport(nativeLibName, EntryPoint = "SDL_AndroidGetExternalStorageState", CallingConvention = CallingConvention.Cdecl)] private static extern IntPtr INTERNAL_SDL_AndroidGetExternalStoragePath(); public static string SDL_AndroidGetExternalStoragePath()