mirror of
https://github.com/raysan5/raylib.git
synced 2025-12-25 10:22:33 -05:00
Merge remote-tracking branch 'refs/remotes/raysan5/develop' into develop
This commit is contained in:
@ -711,7 +711,7 @@ void StopSound(Sound sound)
|
||||
}
|
||||
|
||||
// Check if a sound is playing
|
||||
bool SoundIsPlaying(Sound sound)
|
||||
bool IsSoundPlaying(Sound sound)
|
||||
{
|
||||
bool playing = false;
|
||||
ALint state;
|
||||
@ -890,7 +890,7 @@ void ResumeMusicStream(void)
|
||||
}
|
||||
|
||||
// Check if music is playing
|
||||
bool MusicIsPlaying(void)
|
||||
bool IsMusicPlaying(void)
|
||||
{
|
||||
bool playing = false;
|
||||
ALint state;
|
||||
|
||||
Reference in New Issue
Block a user