Fixed PS position in Advanced RDS view

This commit is contained in:
Sjef Verhoeven PE5PVB
2024-05-17 18:35:18 +02:00
parent 9a39606d73
commit eb5fcc3107
+3 -3
View File
@@ -322,7 +322,7 @@ void readRds() {
PSSprite.drawString(PSold, 0, 0);
if (!radio.rds.hasLongPS) {
if (advancedRDS) {
PSSprite.pushSprite(36, 75);
PSSprite.pushSprite(36, 74);
} else {
PSSprite.pushSprite(36, 187);
}
@@ -377,7 +377,7 @@ void readRds() {
PSSprite.drawString(PSold, 0, 0);
if (!radio.rds.hasLongPS) {
if (advancedRDS) {
PSSprite.pushSprite(36, 75);
PSSprite.pushSprite(36, 74);
} else {
PSSprite.pushSprite(36, 187);
}
@@ -710,7 +710,7 @@ void showPS() {
if (!RDSstatus) PSSprite.setTextColor(RDSDropoutColor, RDSDropoutColorSmooth, false); else PSSprite.setTextColor(RDSColor, RDSColorSmooth, false);
PSSprite.drawString(radio.rds.stationName, 0, 0);
}
if (advancedRDS) PSSprite.pushSprite(36, 75); else PSSprite.pushSprite(36, 187);
if (advancedRDS) PSSprite.pushSprite(36, 74); else PSSprite.pushSprite(36, 187);
}
}
PSold = radio.rds.stationName;