Sfoglia il codice sorgente

IsAudioBufferPlaying() replace ERROR by WARNING

pull/1060/head
Ray 5 anni fa
parent
commit
f46fcb8307
1 ha cambiato i file con 1 aggiunte e 1 eliminazioni
  1. +1
    -1
      src/raudio.c

+ 1
- 1
src/raudio.c Vedi File

@ -662,7 +662,7 @@ bool IsAudioBufferPlaying(AudioBuffer *buffer)
bool result = false; bool result = false;
if (buffer != NULL) result = (buffer->playing && !buffer->paused); 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; return result;
} }

||||||
x
 
000:0
Caricamento…
Annulla
Salva