From 1eac9ca02f8f2cf79bc7ed299e7bea0ec0b9231a Mon Sep 17 00:00:00 2001 From: cyberman54 Date: Sun, 12 Mar 2023 13:32:59 +0100 Subject: [PATCH] bugfix show timesource symbol --- src/timekeeper.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/timekeeper.cpp b/src/timekeeper.cpp index 4b9c69ab..4412990d 100644 --- a/src/timekeeper.cpp +++ b/src/timekeeper.cpp @@ -6,8 +6,8 @@ // symbol to display current time source -// G = GPS / R = RTC / L = LORA / * = no sync / ? = never synced -const char timeSetSymbols[] = {'G', 'R', 'L', '*', '?'}; +// G = GPS / R = RTC / L = LORA / ? = unsynced / * = set +const char timeSetSymbols[] = {'G', 'R', 'L', '?', '*'}; DRAM_ATTR bool TimePulseTick = false; #ifdef GPS_INT