Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/audio/pspaudio.h
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down Expand Up @@ -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);

Expand Down Expand Up @@ -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);

Expand Down