From 9640f452cd815f9133a6c1de8f474b8dc769f66d Mon Sep 17 00:00:00 2001 From: David Volovskiy Date: Thu, 22 Aug 2024 20:46:47 -0400 Subject: [PATCH] Made the T and Y characters look more unique on the 4 and 6 position --- watch-library/shared/watch/watch_private_display.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/watch-library/shared/watch/watch_private_display.c b/watch-library/shared/watch/watch_private_display.c index c12957d9..7ea4141b 100644 --- a/watch-library/shared/watch/watch_private_display.c +++ b/watch-library/shared/watch/watch_private_display.c @@ -43,6 +43,8 @@ void watch_display_character(uint8_t character, uint8_t position) { else if (character == 'M' || character == 'm' || character == 'N') character = 'n'; // M and uppercase N need to be lowercase n else if (character == 'c') character = 'C'; // C needs to be uppercase else if (character == 'J') character = 'j'; // same + else if (character == 't' || character == 'T') character = '+'; // t in those locations looks like E + else if (character == 'y' || character == 'Y') character = '4'; // t in those locations looks like g else if (character == 'v' || character == 'V' || character == 'U' || character == 'W' || character == 'w') character = 'u'; // bottom segment duplicated, so show in top half } else { if (character == 'u') character = 'v'; // we can use the bottom segment; move to lower half