From e8808ebc5489ea225c2da0b3d3ba97f70f5c7cb3 Mon Sep 17 00:00:00 2001 From: Bill Somerville Date: Sat, 26 Sep 2020 21:07:35 +0100 Subject: [PATCH] Remove unnecessary stop of the input audio stream after error notifications --- Audio/soundin.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Audio/soundin.cpp b/Audio/soundin.cpp index 00129311a..92368016b 100644 --- a/Audio/soundin.cpp +++ b/Audio/soundin.cpp @@ -37,10 +37,6 @@ bool SoundInput::checkStream () result = true; break; } - if (!result) - { - stop (); - } } return result; }