We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f553b12 commit d8a8544Copy full SHA for d8a8544
Intersect.Client.Core/MonoGame/NativeInterop/Sdl2.cs
@@ -36,7 +36,7 @@ public static unsafe string SDL_GetError()
36
[UnmanagedFunctionPointer(CallingConvention.Cdecl)]
37
private unsafe delegate void SDL_free_d(void* ptr);
38
39
- private static SDL_free_d? SDL_free_f = Loader.Functions.LoadFunction<SDL_free_d>(nameof(SDL_free_f));
+ private static SDL_free_d? SDL_free_f = Loader.Functions.LoadFunction<SDL_free_d>(nameof(SDL_free));
40
41
private static unsafe void SDL_free(void* ptr) => SDL_free_f!(ptr);
42
0 commit comments