From e258718e8913377e962e6f0b502cd4b3f9af6545 Mon Sep 17 00:00:00 2001 From: Wouter Wijsman Date: Fri, 2 Jan 2026 22:28:34 +0100 Subject: [PATCH] Fix return values blocking sceAudioOutput functions in documentation --- src/audio/pspaudio.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/audio/pspaudio.h b/src/audio/pspaudio.h index 4edd352931..6ae2175752 100644 --- a/src/audio/pspaudio.h +++ b/src/audio/pspaudio.h @@ -127,7 +127,7 @@ int sceAudioOutput(int channel, int vol, void *buf); * * @param buf - Pointer to the PCM data to output. * - * @return 0 on success, an error if less than 0. + * @return number of queued samples on success, an error if less than 0. */ int sceAudioOutputBlocking(int channel, int vol, void *buf); @@ -157,7 +157,7 @@ int sceAudioOutputPanned(int channel, int leftvol, int rightvol, void *buf); * * @param buf - Pointer to the PCM data to output. * - * @return 0 on success, an error if less than 0. + * @return number of queued samples on success, an error if less than 0. */ int sceAudioOutputPannedBlocking(int channel, int leftvol, int rightvol, void *buf); @@ -285,7 +285,7 @@ int sceAudioSRCChRelease(void); * * @param buf - Pointer to the PCM data to output. * - * @return 0 on success, an error if less than 0. + * @return number of queued samples on success, an error if less than 0. */ int sceAudioSRCOutputBlocking(int vol, void *buf);