Audiostream: Don't log on every push if audio is disabled

There is an initialization warning which is enough to warn users
This commit is contained in:
Stefanos Kornilios Mitsis Poiitidis 2015-07-28 16:34:26 +02:00
parent d3c3feb523
commit f62d532b78
1 changed files with 0 additions and 2 deletions

View File

@ -126,8 +126,6 @@ static audiobackend_t* GetAudioBackend(std::string slug)
u32 PushAudio(void* frame, u32 amt, bool wait) {
if (audiobackend_current != NULL) {
return audiobackend_current->push(frame, amt, wait);
} else {
printf("AUDIO: Backend is NULL!\n");
}
return 0;
}