Merge remote-tracking branch 'refs/remotes/raysan5/develop' into develop

This commit is contained in:
Joshua Reisenauer
2016-05-03 14:17:37 -07:00
8 changed files with 209 additions and 224 deletions

View File

@ -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;