From f46fcb8307775b34ff2e4db94c5e5504b6252dc4 Mon Sep 17 00:00:00 2001 From: Ray Date: Wed, 8 Jan 2020 12:41:36 +0100 Subject: [PATCH] IsAudioBufferPlaying() replace ERROR by WARNING --- src/raudio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/raudio.c b/src/raudio.c index 3e129f548..d6e74848d 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; }