瀏覽代碼

IsAudioBufferPlaying() replace ERROR by WARNING

pull/1060/head
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;
}

Loading…
取消
儲存