From 49a69c7cad06c17924d17e096ece9680314b98c2 Mon Sep 17 00:00:00 2001 From: Christopher Liebman Date: Sun, 4 Mar 2018 16:46:16 -0800 Subject: [PATCH] display seconds "till valid" --- Display.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Display.cpp b/Display.cpp index d52202c..5477353 100644 --- a/Display.cpp +++ b/Display.cpp @@ -105,8 +105,8 @@ void Display::process() { if (_gps.isGPSValid()) { - align(TEXT_ALIGN_LEFT); - print(0, 40, "Valid in: %d", _gps.getValidDelay()); + align(TEXT_ALIGN_RIGHT); + print(127, 40, "%d till VALID", _gps.getValidDelay()); } else {