Ver código fonte

IsAudioBufferPlaying() replace ERROR by WARNING

pull/1060/head
Ray 5 anos atrás
pai
commit
f46fcb8307
1 arquivos alterados com 1 adições e 1 exclusões
  1. +1
    -1
      src/raudio.c

+ 1
- 1
src/raudio.c Ver arquivo

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

Carregando…
Cancelar
Salvar