From 2e19fd988985ee3ad40ddba6c382d34ff1f52190 Mon Sep 17 00:00:00 2001 From: ChrisDill Date: Sat, 15 Apr 2023 11:14:50 +0100 Subject: [PATCH] Fix AudioCallback usage --- Raylib-cs/interop/Raylib.cs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Raylib-cs/interop/Raylib.cs b/Raylib-cs/interop/Raylib.cs index 77656d5..470992d 100644 --- a/Raylib-cs/interop/Raylib.cs +++ b/Raylib-cs/interop/Raylib.cs @@ -2655,33 +2655,33 @@ namespace Raylib_cs [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void SetAudioStreamCallback( AudioStream stream, - delegate* unmanaged[Cdecl] callback + delegate* unmanaged[Cdecl] callback ); /// Attach audio stream processor to stream [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void AttachAudioStreamProcessor( AudioStream stream, - delegate* unmanaged[Cdecl] processor + delegate* unmanaged[Cdecl] processor ); /// Detach audio stream processor from stream [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DetachAudioStreamProcessor( AudioStream stream, - delegate* unmanaged[Cdecl] processor + delegate* unmanaged[Cdecl] processor ); /// Attach audio stream processor to the entire audio pipeline [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void AttachAudioMixedProcessor( - delegate* unmanaged[Cdecl] processor + delegate* unmanaged[Cdecl] processor ); /// Detach audio stream processor from the entire audio pipeline [DllImport(nativeLibName, CallingConvention = CallingConvention.Cdecl)] public static extern void DetachAudioMixedProcessor( - delegate* unmanaged[Cdecl] processor + delegate* unmanaged[Cdecl] processor ); } }