summaryrefslogtreecommitdiffhomepage
path: root/src/audio.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/audio.c')
-rw-r--r--src/audio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio.c b/src/audio.c
index 39d1ee8b..09c91785 100644
--- a/src/audio.c
+++ b/src/audio.c
@@ -585,7 +585,7 @@ void StopSound(Sound sound)
}
// Check if a sound is playing
-bool SoundIsPlaying(Sound sound)
+bool IsSoundPlaying(Sound sound)
{
bool playing = false;
ALint state;
@@ -764,7 +764,7 @@ void ResumeMusicStream(void)
}
// Check if music is playing
-bool MusicIsPlaying(void)
+bool IsMusicPlaying(void)
{
bool playing = false;
ALint state;