From f7f87407ae26c172ee77d36565ee56b5ed9d2584 Mon Sep 17 00:00:00 2001 From: sere3925sere <115541716+sere3925sere@users.noreply.github.com> Date: Sat, 3 Jun 2023 17:21:14 +0400 Subject: [PATCH] Update SDL2.bf --- BeefLibs/SDL2/src/SDL2.bf | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/BeefLibs/SDL2/src/SDL2.bf b/BeefLibs/SDL2/src/SDL2.bf index ca67137f..48a0bb09 100644 --- a/BeefLibs/SDL2/src/SDL2.bf +++ b/BeefLibs/SDL2/src/SDL2.bf @@ -6042,15 +6042,15 @@ namespace SDL2 /* uint32 refers to an SDL_AudioDeviceID */ [LinkName("SDL_OpenAudioDevice")] - private static extern AudioDeviceID OpenAudioDevice( - char8* device, - int32 iscapture, - ref SDL_AudioSpec desired, - out SDL_AudioSpec obtained, - int32 allowed_changes + public static extern AudioDeviceID OpenAudioDevice( + char8* device, + int32 iscapture, + ref SDL_AudioSpec desired, + out SDL_AudioSpec obtained, + int32 allowed_changes ); - struct AudioDeviceID : uint32 + public struct AudioDeviceID : uint32 { }