diff options
| author | Zatherz <zatherz@linux.pl> | 2019-08-26 00:34:54 +0200 |
|---|---|---|
| committer | Ray <raysan5@gmail.com> | 2019-08-26 00:34:54 +0200 |
| commit | 8e86f3586d40992d2cd38416d3b67413f42356c1 (patch) | |
| tree | 0d6564f0e90281de19bcd47ef03f70d897d182c1 /src | |
| parent | e67c842faa67123b65e2e2c5093c8d532f7bf130 (diff) | |
| download | raylib-8e86f3586d40992d2cd38416d3b67413f42356c1.tar.gz raylib-8e86f3586d40992d2cd38416d3b67413f42356c1.zip | |
IsAudioBufferProcessed -> IsAudioStreamProcessed (#951)
It appears that you've missed renaming this function here, which makes trying to compile standalone raudio.c error out.
Diffstat (limited to 'src')
| -rw-r--r-- | src/raudio.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raudio.h b/src/raudio.h index 8bbbe861..302993a9 100644 --- a/src/raudio.h +++ b/src/raudio.h @@ -182,7 +182,7 @@ float GetMusicTimePlayed(Music music); // Get current m AudioStream InitAudioStream(unsigned int sampleRate, unsigned int sampleSize, unsigned int channels); // Init audio stream (to stream raw audio pcm data) void UpdateAudioStream(AudioStream stream, const void *data, int samplesCount); // Update audio stream buffers with data void CloseAudioStream(AudioStream stream); // Close audio stream and free memory -bool IsAudioBufferProcessed(AudioStream stream); // Check if any audio stream buffers requires refill +bool IsAudioStreamProcessed(AudioStream stream); // Check if any audio stream buffers requires refill void PlayAudioStream(AudioStream stream); // Play audio stream void PauseAudioStream(AudioStream stream); // Pause audio stream void ResumeAudioStream(AudioStream stream); // Resume audio stream |
