Explorar el Código

IsAudioBufferPlaying() replace ERROR by WARNING

pull/1060/head
Ray hace 6 años
padre
commit
f46fcb8307
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      src/raudio.c

+ 1
- 1
src/raudio.c Ver fichero

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

Cargando…
Cancelar
Guardar