From 23b75281adfc23f820d22a3fe597f69579ef63a8 Mon Sep 17 00:00:00 2001 From: Ray Date: Fri, 14 Feb 2020 23:10:02 +0100 Subject: [PATCH] Add function prototype --- src/raudio.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/raudio.h b/src/raudio.h index a8129b877..154ae8e5a 100644 --- a/src/raudio.h +++ b/src/raudio.h @@ -189,6 +189,7 @@ bool IsAudioStreamPlaying(AudioStream stream); // Check if audi void StopAudioStream(AudioStream stream); // Stop audio stream void SetAudioStreamVolume(AudioStream stream, float volume); // Set volume for audio stream (1.0 is max level) void SetAudioStreamPitch(AudioStream stream, float pitch); // Set pitch for audio stream (1.0 is base level) +void SetAudioStreamBufferSizeDefault(int size); // Default size for new audio streams #ifdef __cplusplus }