]> git.earman.xyz Git - sensor-watch.git/commitdiff
Turn on the funky segment of pos 0 for char '@'
authorHugo Chargois <hugo.chargois@free.fr>
Sat, 9 Sep 2023 00:22:08 +0000 (02:22 +0200)
committerHugo Chargois <hugo.chargois@free.fr>
Sat, 9 Sep 2023 00:22:08 +0000 (02:22 +0200)
watch-library/shared/watch/watch_private_display.c

index 245b20edd045aae03c680badd08595429a05f2c8..c12957d9c56fca1520610cc5cde281945254e9d1 100644 (file)
@@ -93,7 +93,7 @@ void watch_display_character(uint8_t character, uint8_t position) {
     }
 
     if (character == 'T' && position == 1) watch_set_pixel(1, 12); // add descender
-    else if (position == 0 && (character == 'B' || character == 'D')) watch_set_pixel(0, 15); // add funky ninth segment
+    else if (position == 0 && (character == 'B' || character == 'D' || character == '@')) watch_set_pixel(0, 15); // add funky ninth segment
     else if (position == 1 && (character == 'B' || character == 'D' || character == '@')) watch_set_pixel(0, 12); // add funky ninth segment
 }