0
mirror of https://github.com/OneOfEleven/uv-k5-firmware-custom.git synced 2025-06-19 22:58:04 +03:00

fix smallest font compile problem

This commit is contained in:
OneOfEleven
2023-10-20 16:06:38 +01:00
parent 275b2d248a
commit c92ef43b39
8 changed files with 14 additions and 11 deletions

View File

@ -400,7 +400,9 @@ void UI_update_rssi(const int16_t rssi, const int vfo)
void UI_DisplayMain(void)
{
const unsigned int smallest_char_spacing = ARRAY_SIZE(g_font3x5[0]) + 1;
#ifndef ENABLE_BIG_FREQ
const unsigned int smallest_char_spacing = ARRAY_SIZE(g_font3x5[0]) + 1;
#endif
const unsigned int line0 = 0; // text screen line
const unsigned int line1 = 4;
char String[17];