Fix incorrect show EON indicator on Deep Blue skin
This commit is contained in:
+2
-2
@@ -4422,7 +4422,7 @@ void startFMDXScan() {
|
|||||||
band = BAND_FM;
|
band = BAND_FM;
|
||||||
SelectBand();
|
SelectBand();
|
||||||
}
|
}
|
||||||
endMenu();
|
if (menu) endMenu();
|
||||||
DoMemoryPosTune();
|
DoMemoryPosTune();
|
||||||
} else {
|
} else {
|
||||||
tunemode = TUNE_MAN;
|
tunemode = TUNE_MAN;
|
||||||
@@ -4431,7 +4431,7 @@ void startFMDXScan() {
|
|||||||
SelectBand();
|
SelectBand();
|
||||||
endMenu();
|
endMenu();
|
||||||
}
|
}
|
||||||
endMenu();
|
if (menu) endMenu();
|
||||||
TuneUp();
|
TuneUp();
|
||||||
ShowFreq(0);
|
ShowFreq(0);
|
||||||
}
|
}
|
||||||
|
|||||||
+2
-2
@@ -452,7 +452,7 @@ void readRds() {
|
|||||||
dropout = false;
|
dropout = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (CurrentSkin == 1 && !advancedRDS) {
|
if (CurrentSkin == 1 && !advancedRDS && !afscreen && !screenmute) {
|
||||||
if (hasrtplusold != radio.rds.hasRDSplus) {
|
if (hasrtplusold != radio.rds.hasRDSplus) {
|
||||||
if (radio.rds.hasRDSplus) tft.pushImage (288, 151, 27, 16, skin1_rtpluson); else tft.pushImage (288, 151, 27, 16, skin1_rtplusoff);
|
if (radio.rds.hasRDSplus) tft.pushImage (288, 151, 27, 16, skin1_rtpluson); else tft.pushImage (288, 151, 27, 16, skin1_rtplusoff);
|
||||||
hasrtplusold = radio.rds.hasRDSplus;
|
hasrtplusold = radio.rds.hasRDSplus;
|
||||||
@@ -469,7 +469,7 @@ void readRds() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (haseonold != radio.rds.hasEON) {
|
if (haseonold != radio.rds.hasEON) {
|
||||||
if (radio.rds.hasEON) tft.pushImage (254, 151, 30, 16, skin1_eonon); else tft.pushImage (254, 151, 30, 16, skin1_eonoff);
|
if (radio.eon_counter > 0) tft.pushImage (254, 151, 30, 16, skin1_eonon); else tft.pushImage (254, 151, 30, 16, skin1_eonoff);
|
||||||
haseonold = radio.rds.hasEON;
|
haseonold = radio.rds.hasEON;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user