diff --git a/bitmaps.c b/bitmaps.c index f3c02bd..622139e 100644 --- a/bitmaps.c +++ b/bitmaps.c @@ -23,12 +23,6 @@ const uint8_t gFontPttClassic[2][6] = {0x00, 0x7f, 0x40, 0x40, 0x40, 0x40}, }; -const uint8_t gFontFM[2][6] = -{ - {0x00, 0x7f, 0x9, 0x9, 0x9, 0x1}, - {0x00, 0x7f, 0x2, 0x1c, 0x2, 0x7f}, -}; - const uint8_t gFontF[1][8] = { {0x7f, 0x00, 0x76, 0x76, 0x76, 0x76, 0x7e, 0x7f}, // 'F' diff --git a/bitmaps.h b/bitmaps.h index f60a63b..9c8794b 100644 --- a/bitmaps.h +++ b/bitmaps.h @@ -7,7 +7,6 @@ extern const uint8_t gFontPowerSave[2][6]; extern const uint8_t gFontPttOnePush[2][6]; extern const uint8_t gFontPttClassic[2][6]; -extern const uint8_t gFontFM[2][6]; extern const uint8_t gFontF[1][8]; extern const uint8_t gFontS[1][6]; diff --git a/ui/status.c b/ui/status.c index 92df154..bde4997 100644 --- a/ui/status.c +++ b/ui/status.c @@ -91,13 +91,6 @@ void UI_DisplayStatus() x1 = x + 10; } else -#endif -#ifdef ENABLE_FMRADIO - if (gFmRadioMode) { // FM indicator - memcpy(line + x, gFontFM, sizeof(gFontFM)); - x1 = x + sizeof(gFontFM); - } - else #endif { // SCAN indicator if (gScanStateDir != SCAN_OFF || SCANNER_IsScanning()) {