diff options
| author | David Reid <[email protected]> | 2017-11-12 21:55:24 +1000 |
|---|---|---|
| committer | David Reid <[email protected]> | 2017-11-12 21:55:24 +1000 |
| commit | ac4c911ad7e08cca3691896befbe8c09e3f3262f (patch) | |
| tree | ca8935e8a68ffe15b1fabff2525d74ce0e2f920c /src/raylib.h | |
| parent | 68bf6c9701f9c1705849600838571f4f3b5c1446 (diff) | |
| download | raylib-ac4c911ad7e08cca3691896befbe8c09e3f3262f.tar.gz raylib-ac4c911ad7e08cca3691896befbe8c09e3f3262f.zip | |
Work on porting Music to mini_al.
Diffstat (limited to 'src/raylib.h')
| -rw-r--r-- | src/raylib.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/raylib.h b/src/raylib.h index 5e3724c9..725eb23b 100644 --- a/src/raylib.h +++ b/src/raylib.h @@ -1150,7 +1150,7 @@ RLAPI void ResumeMusicStream(Music music); // Resume RLAPI bool IsMusicPlaying(Music music); // Check if music is playing RLAPI void SetMusicVolume(Music music, float volume); // Set volume for music (1.0 is max level) RLAPI void SetMusicPitch(Music music, float pitch); // Set pitch for a music (1.0 is base level) -RLAPI void SetMusicLoopCount(Music music, float count); // Set music loop count (loop repeats) +RLAPI void SetMusicLoopCount(Music music, int count); // Set music loop count (loop repeats) RLAPI float GetMusicTimeLength(Music music); // Get music time length (in seconds) RLAPI float GetMusicTimePlayed(Music music); // Get current music time played (in seconds) @@ -1163,6 +1163,7 @@ RLAPI bool IsAudioBufferProcessed(AudioStream stream); // Check i RLAPI void PlayAudioStream(AudioStream stream); // Play audio stream RLAPI void PauseAudioStream(AudioStream stream); // Pause audio stream RLAPI void ResumeAudioStream(AudioStream stream); // Resume audio stream +RLAPI bool IsAudioStreamPlaying(AudioStream stream); // Check if audio stream is playing RLAPI void StopAudioStream(AudioStream stream); // Stop audio stream #ifdef __cplusplus |
