From: c vw Date: Fri, 28 May 2021 12:50:46 +0000 (+0200) Subject: "Mute audio to radio" should not mute local audio. X-Git-Url: https://git.rkrishnan.org/listings/vdrive/index.php?a=commitdiff_plain;h=f878f7f4460d8be26493a00bcb5e656d8088958a;p=pihpsdr.git "Mute audio to radio" should not mute local audio. --- diff --git a/receiver.c b/receiver.c index b4b6199..0ac4b10 100644 --- a/receiver.c +++ b/receiver.c @@ -1373,7 +1373,7 @@ static void process_rx_buffer(RECEIVER *rx) { } if(rx->local_audio) { - if((rx!=active_receiver && rx->mute_when_not_active) || rx->mute_radio) { + if((rx!=active_receiver && rx->mute_when_not_active)) { left_sample=0.0; right_sample=0.0; } else {