From f62d532b78fce6149d7686077cee7b5a09580fce Mon Sep 17 00:00:00 2001 From: Stefanos Kornilios Mitsis Poiitidis Date: Tue, 28 Jul 2015 16:34:26 +0200 Subject: [PATCH] Audiostream: Don't log on every push if audio is disabled There is an initialization warning which is enough to warn users --- core/oslib/audiostream.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/core/oslib/audiostream.cpp b/core/oslib/audiostream.cpp index f43afb458..c8f8e639c 100644 --- a/core/oslib/audiostream.cpp +++ b/core/oslib/audiostream.cpp @@ -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; }