Browse Source

IsAudioBufferPlaying() replace ERROR by WARNING

Ray 5 years ago
parent
commit
f46fcb8307
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/raudio.c

+ 1 - 1
src/raudio.c

@@ -662,7 +662,7 @@ bool IsAudioBufferPlaying(AudioBuffer *buffer)
     bool result = false;
     bool result = false;
 
 
     if (buffer != NULL) result = (buffer->playing && !buffer->paused);
     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;
     return result;
 }
 }