mirror of
https://github.com/raysan5/raylib.git
synced 2026-01-03 12:03:30 +00:00
IsAudioBufferPlaying() replace ERROR by WARNING
This commit is contained in:
parent
b708965ab7
commit
f46fcb8307
@ -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…
x
Reference in New Issue
Block a user