]> git.rkrishnan.org Git - pihpsdr.git/commitdiff
"Mute audio to radio" means the radio (only), not a local headphone
authorc vw <dl1ycf@darc.de>
Fri, 28 May 2021 14:59:30 +0000 (16:59 +0200)
committerc vw <dl1ycf@darc.de>
Fri, 28 May 2021 14:59:30 +0000 (16:59 +0200)
receiver.c

index b4b6199edc18a4368dcc86af6c62ebcc9b500b27..0ac4b10b4f057d19f102f6b0141e435edb6a98ec 100644 (file)
@@ -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 {