diff --git a/TEF6686_ESP32.ino b/TEF6686_ESP32.ino index 9ebdddc..ab01e83 100644 --- a/TEF6686_ESP32.ino +++ b/TEF6686_ESP32.ino @@ -2822,12 +2822,12 @@ void ShowTuneMode() { switch (tunemode) { case TUNE_MAN: if (band == BAND_SW && nowToggleSWMIBand) { - tftPrint(0, "AUTO", 22, 60, BackgroundColor, BackgroundColor, FONT16); + tftPrint(0, "AUTO", 22, 60, BackgroundColor, BackgroundColor, 16); tft.drawRoundRect(1, 57, 42, 20, 5, GreyoutColor); tftPrint(0, "BAND", 22, 60, GreyoutColor, BackgroundColor, 16); } else { - tftPrint(0, "BAND", 22, 60, BackgroundColor, BackgroundColor, FONT16); + tftPrint(0, "BAND", 22, 60, BackgroundColor, BackgroundColor, 16); tft.drawRoundRect(1, 57, 42, 20, 5, GreyoutColor); tftPrint(0, "AUTO", 22, 60, GreyoutColor, BackgroundColor, 16); @@ -2853,12 +2853,12 @@ void ShowTuneMode() { case TUNE_MEM: if (band == BAND_SW && nowToggleSWMIBand) { - tftPrint(0, "AUTO", 22, 60, BackgroundColor, BackgroundColor, FONT16); + tftPrint(0, "AUTO", 22, 60, BackgroundColor, BackgroundColor, 16); tft.drawRoundRect(1, 57, 42, 20, 5, GreyoutColor); tftPrint(0, "BAND", 22, 60, GreyoutColor, BackgroundColor, 16); } else { - tftPrint(0, "BAND", 22, 60, BackgroundColor, BackgroundColor, FONT16); + tftPrint(0, "BAND", 22, 60, BackgroundColor, BackgroundColor, 16); tft.drawRoundRect(1, 57, 42, 20, 5, GreyoutColor); tftPrint(0, "AUTO", 22, 60, GreyoutColor, BackgroundColor, 16);