浏览代码

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

正在加载...
取消
保存