diff options
| author | Ray <[email protected]> | 2020-01-08 12:41:36 +0100 |
|---|---|---|
| committer | Ray <[email protected]> | 2020-01-08 12:41:36 +0100 |
| commit | f46fcb8307775b34ff2e4db94c5e5504b6252dc4 (patch) | |
| tree | cde7ac898acd9e877d2207526dfe97d002571915 /src | |
| parent | b708965ab78f203733372982a9a610c4eb64ac15 (diff) | |
| download | raylib-f46fcb8307775b34ff2e4db94c5e5504b6252dc4.tar.gz raylib-f46fcb8307775b34ff2e4db94c5e5504b6252dc4.zip | |
IsAudioBufferPlaying() replace ERROR by WARNING
Diffstat (limited to 'src')
| -rw-r--r-- | src/raudio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/raudio.c b/src/raudio.c index 3e129f54..d6e74848 100644 --- a/src/raudio.c +++ b/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; } |
