From 6c39f4840e901ed29dac7787932431c22dd238d7 Mon Sep 17 00:00:00 2001 From: Sjef Verhoeven PE5PVB Date: Fri, 31 Jan 2025 15:17:25 +0100 Subject: [PATCH] Fixed small bug in clock --- src/rds.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rds.cpp b/src/rds.cpp index d4dfba5..b4f9a42 100644 --- a/src/rds.cpp +++ b/src/rds.cpp @@ -845,7 +845,7 @@ void showCT() { } else { // Handle dropout scenarios if (rtcset) { // Display dropout message if RTC was set - tftReplace(1, rds_clockold, rds_clock, 26, 1, RDSDropoutColor, RDSDropoutColorSmooth, BackgroundColor, 16); + tftReplace(0, rds_clockold, rds_clock, 26, 1, RDSDropoutColor, RDSDropoutColorSmooth, BackgroundColor, 16); } else { // Clear and reprint the clock tftPrint(0, rds_clockold, 26, 1, BackgroundColor, BackgroundColor, 16); tftPrint(0, rds_clock, 26, 1, BackgroundColor, BackgroundColor, 16);