From bfc791cdbf1a84942ce821383e211d3ff66c8787 Mon Sep 17 00:00:00 2001 From: joeycastillo Date: Sun, 6 Oct 2024 11:28:54 -0400 Subject: [PATCH] improve decimal display outside positions 4 and 6 --- watch-library/shared/watch/watch_common_display.c | 1 + 1 file changed, 1 insertion(+) diff --git a/watch-library/shared/watch/watch_common_display.c b/watch-library/shared/watch/watch_common_display.c index 96b9032d..7e443293 100644 --- a/watch-library/shared/watch/watch_common_display.c +++ b/watch-library/shared/watch/watch_common_display.c @@ -70,6 +70,7 @@ void watch_display_character(uint8_t character, uint8_t position) { } else { if (character == 'u') character = 'v'; // we can use the bottom segment; move to lower half else if (character == 'j') character = 'J'; // same but just display a normal J + else if (character == '.') character = '_'; // we can use the bottom segment; make dot an underscore } if (position > 1) { if (character == 'T') character = 't'; // uppercase T only works in positions 0 and 1