mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-17 20:05:35 +00:00
REVIEWED: Comments for UpdateSound() specifying expected data format #5350
This commit is contained in:
@@ -1040,8 +1040,8 @@ void UnloadSoundAlias(Sound alias)
|
||||
}
|
||||
|
||||
// Update sound buffer with new data
|
||||
// NOTE 1: data format must match sound.stream.sampleSize
|
||||
// NOTE 2: frameCount must not exceed sound.frameCount
|
||||
// PARAMS: [data], format must match sound.stream.sampleSize, default 32 bit float - stereo
|
||||
// PARAMS: [frameCount] must not exceed sound.frameCount
|
||||
void UpdateSound(Sound sound, const void *data, int frameCount)
|
||||
{
|
||||
if (sound.stream.buffer != NULL)
|
||||
|
||||
Reference in New Issue
Block a user