From 138f3a3c917f87425fb3e34d6e5a5aa6c181ff7d Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Fri, 30 Aug 2024 06:26:23 -0700 Subject: [PATCH] Fixed documentation for SDL_SetAudioStreamGetCallback() Fixes https://github.com/libsdl-org/SDL/issues/10633 --- include/SDL3/SDL_audio.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/SDL3/SDL_audio.h b/include/SDL3/SDL_audio.h index 8b3e61bbba..79818e92c9 100644 --- a/include/SDL3/SDL_audio.h +++ b/include/SDL3/SDL_audio.h @@ -1557,7 +1557,7 @@ typedef void (SDLCALL *SDL_AudioStreamCallback)(void *userdata, SDL_AudioStream * Setting a NULL function turns off the callback. * * \param stream the audio stream to set the new callback on. - * \param callback the new callback function to call when data is added to the + * \param callback the new callback function to call when data is requested from the * stream. * \param userdata an opaque pointer provided to the callback for its own * personal use.