Skip to content

Commit

Permalink
Display Mute to OSD for channels where stereo is set to neither L n…
Browse files Browse the repository at this point in the history
…or R.
  • Loading branch information
rhargreaves committed Jul 17, 2024
1 parent 8b44e03 commit b1b3dc3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/ui_fm.c
Original file line number Diff line number Diff line change
Expand Up @@ -135,13 +135,13 @@ static const char* stereoText(u8 stereo)
{
switch (stereo) {
case 0:
return " ";
return "Mute";
case 1:
return "R ";
return "R ";
case 2:
return "L ";
return "L ";
default:
return "LR";
return "LR ";
}
}

Expand Down

0 comments on commit b1b3dc3

Please sign in to comment.