From 4af389328a87d16d055aa1d26a3185872a49f710 Mon Sep 17 00:00:00 2001 From: Sjef Verhoeven PE5PVB Date: Tue, 25 Feb 2025 13:40:36 +0100 Subject: [PATCH] Adjusted PTY position --- src/rds.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/rds.cpp b/src/rds.cpp index 0a6cfaa..ae19db3 100644 --- a/src/rds.cpp +++ b/src/rds.cpp @@ -342,9 +342,9 @@ void readRds() { } if (advancedRDS) { - tftPrint(-1, PTYold, 36, 109, RDSDropoutColor, RDSDropoutColorSmooth, 16); + tftPrint(-1, PTYold, 34, 109, RDSDropoutColor, RDSDropoutColorSmooth, 16); } else { - tftPrint(-1, PTYold, 36, 163, RDSDropoutColor, RDSDropoutColorSmooth, 16); + tftPrint(-1, PTYold, 34, 163, RDSDropoutColor, RDSDropoutColorSmooth, 16); } if (advancedRDS) { @@ -399,9 +399,9 @@ void readRds() { } if (advancedRDS) { - tftPrint(-1, PTYold, 36, 109, RDSColor, RDSColorSmooth, 16); + tftPrint(-1, PTYold, 34, 109, RDSColor, RDSColorSmooth, 16); } else { - tftPrint(-1, PTYold, 36, 163, RDSColor, RDSColorSmooth, 16); + tftPrint(-1, PTYold, 34, 163, RDSColor, RDSColorSmooth, 16); } if (!advancedRDS) { @@ -624,15 +624,15 @@ void showPTY() { if (!screenmute) { if (advancedRDS) { if (!RDSstatus) { - tftReplace(-1, PTYold, PTYString, 36, 109, RDSDropoutColor, RDSDropoutColorSmooth, BackgroundColor, 16); + tftReplace(-1, PTYold, PTYString, 34, 109, RDSDropoutColor, RDSDropoutColorSmooth, BackgroundColor, 16); } else { - tftReplace(-1, PTYold, PTYString, 36, 109, RDSColor, RDSColorSmooth, BackgroundColor, 16); + tftReplace(-1, PTYold, PTYString, 34, 109, RDSColor, RDSColorSmooth, BackgroundColor, 16); } } else { if (!RDSstatus) { - tftReplace(-1, PTYold, PTYString, 36, 163, RDSDropoutColor, RDSDropoutColorSmooth, BackgroundColor, 16); + tftReplace(-1, PTYold, PTYString, 34, 163, RDSDropoutColor, RDSDropoutColorSmooth, BackgroundColor, 16); } else { - tftReplace(-1, PTYold, PTYString, 36, 163, RDSColor, RDSColorSmooth, BackgroundColor, 16); + tftReplace(-1, PTYold, PTYString, 34, 163, RDSColor, RDSColorSmooth, BackgroundColor, 16); } } }