0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-04-28 14:21:25 +03:00

fix channel squelch menu text

This commit is contained in:
OneOfEleven 2023-10-19 19:41:59 +01:00
parent 80e3255fb6
commit c8b6ce53fc
4 changed files with 2 additions and 2 deletions

Binary file not shown.

Binary file not shown.

View File

@ -444,7 +444,7 @@ void SETTINGS_save_chan_attribs_name(const unsigned int channel, const vfo_info_
((p_vfo->band & 7u) << 0);
const unsigned int index = channel & ~7ul; // eeprom writes are always 8 bytes in length
g_user_channel_attributes[channel] = attribs; // remember new attributes
g_user_channel_attributes[channel] = attribs; // remember new attributes
EEPROM_WriteBuffer8(0x0D60 + index, g_user_channel_attributes + index);
}
else

View File

@ -547,7 +547,7 @@ void UI_DisplayMenu(void)
if (g_sub_menu_selection == 0)
strcpy(String, "USE\nMAIN SQL");
else
sprintf(String, "\n ", g_sub_menu_selection);
sprintf(String, "%d", g_sub_menu_selection);
break;
case MENU_MIC_GAIN: