summaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorRay <[email protected]>2020-01-08 12:41:36 +0100
committerRay <[email protected]>2020-01-08 12:41:36 +0100
commitf46fcb8307775b34ff2e4db94c5e5504b6252dc4 (patch)
treecde7ac898acd9e877d2207526dfe97d002571915 /src
parentb708965ab78f203733372982a9a610c4eb64ac15 (diff)
downloadraylib-f46fcb8307775b34ff2e4db94c5e5504b6252dc4.tar.gz
raylib-f46fcb8307775b34ff2e4db94c5e5504b6252dc4.zip
IsAudioBufferPlaying() replace ERROR by WARNING
Diffstat (limited to 'src')
-rw-r--r--src/raudio.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raudio.c b/src/raudio.c
index 3e129f54..d6e74848 100644
--- a/src/raudio.c
+++ b/src/raudio.c
@@ -662,7 +662,7 @@ bool IsAudioBufferPlaying(AudioBuffer *buffer)
bool result = false;
if (buffer != NULL) result = (buffer->playing && !buffer->paused);
- else TraceLog(LOG_ERROR, "IsAudioBufferPlaying() : No audio buffer");
+ else TraceLog(LOG_WARNING, "IsAudioBufferPlaying() : No audio buffer");
return result;
}