From a4fad2661ff0c2bc79e4bdfab7e27080e59006c0 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Sun, 27 Sep 2020 13:34:39 +0100 Subject: [PATCH] Temporary reduction in severity for audio underrun errors --- Audio/soundin.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Audio/soundin.cpp b/Audio/soundin.cpp index 92368016b..2b0c07ccf 100644 --- a/Audio/soundin.cpp +++ b/Audio/soundin.cpp @@ -26,6 +26,7 @@ bool SoundInput::checkStream () break; case QAudio::UnderrunError: + result = true; Q_EMIT error (tr ("Audio data not being fed to the audio input device fast enough.")); break;