From f46fcb8307775b34ff2e4db94c5e5504b6252dc4 Mon Sep 17 00:00:00 2001 From: Ray Date: Wed, 8 Jan 2020 12:41:36 +0100 Subject: IsAudioBufferPlaying() replace ERROR by WARNING --- src/raudio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') 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; } -- cgit v1.2.3