瀏覽代碼

IsAudioBufferPlaying() replace ERROR by WARNING

Ray 5 年之前
父節點
當前提交
f46fcb8307
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/raudio.c

+ 1 - 1
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;
 }