RENAMED: IsAudioBufferProcessed() -> IsAudioStreamProcessed()

Renamed for consistency with similar functions
This commit is contained in:
raysan5 2019-08-13 17:41:31 +02:00
parent c629b16ebc
commit c387bc586d
3 changed files with 6 additions and 6 deletions

View file

@ -99,7 +99,7 @@ int main(void)
}
// Refill audio stream if required
if (IsAudioBufferProcessed(stream))
if (IsAudioStreamProcessed(stream))
{
// Synthesize a buffer that is exactly the requested size
int writeCursor = 0;