diff options
| author | raysan5 <[email protected]> | 2019-08-13 17:41:31 +0200 |
|---|---|---|
| committer | raysan5 <[email protected]> | 2019-08-13 17:41:31 +0200 |
| commit | c387bc586d9c8b9fe9bb840926d12526aaad9116 (patch) | |
| tree | dd8c6d9cf4b64f754ea1ea0ebacf67043d4ba824 /examples/audio | |
| parent | c629b16ebce5c8e7b2d8e2a3e842b069965bd6be (diff) | |
| download | raylib-c387bc586d9c8b9fe9bb840926d12526aaad9116.tar.gz raylib-c387bc586d9c8b9fe9bb840926d12526aaad9116.zip | |
RENAMED: IsAudioBufferProcessed() -> IsAudioStreamProcessed()
Renamed for consistency with similar functions
Diffstat (limited to 'examples/audio')
| -rw-r--r-- | examples/audio/audio_raw_stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/audio/audio_raw_stream.c b/examples/audio/audio_raw_stream.c index 136e02f3..85a77bc0 100644 --- a/examples/audio/audio_raw_stream.c +++ b/examples/audio/audio_raw_stream.c @@ -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; |
