Fixed Wide/Narrow band indicator

This commit is contained in:
OneOfEleven 2023-09-18 11:59:38 +01:00
parent ed33d14c0f
commit 45b5cbe315
4 changed files with 2 additions and 2 deletions

BIN
firmware

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -436,8 +436,8 @@ void UI_DisplayMain(void)
String[0] = '?';
switch (gEeprom.VfoInfo[vfo_num].CHANNEL_BANDWIDTH)
{
// case BANDWIDTH_WIDE: String[0] = 'W'; break;
case BANDWIDTH_NARROW: String[0] = 'N'; break;
case BANDWIDTH_WIDE: String[0] = '\0'; break;
case BANDWIDTH_NARROW: String[0] = 'N'; break;
}
String[1] = '\0';
UI_PrintStringSmall(String, display_width + 70, 0, Line + 1);