1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-08 19:48:20 +02:00

Update SDL2.bf

This commit is contained in:
sere3925sere 2023-06-03 17:21:14 +04:00 committed by GitHub
parent 0e274aee8e
commit f7f87407ae
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6042,7 +6042,7 @@ namespace SDL2
/* uint32 refers to an SDL_AudioDeviceID */
[LinkName("SDL_OpenAudioDevice")]
private static extern AudioDeviceID OpenAudioDevice(
public static extern AudioDeviceID OpenAudioDevice(
char8* device,
int32 iscapture,
ref SDL_AudioSpec desired,
@ -6050,7 +6050,7 @@ namespace SDL2
int32 allowed_changes
);
struct AudioDeviceID : uint32
public struct AudioDeviceID : uint32
{
}