]> git.earman.xyz Git - sensor-watch.git/commitdiff
mars clock: use S without cross-stroke for clarity
authorJoey Castillo <joeycastillo@utexas.edu>
Wed, 6 Apr 2022 19:54:31 +0000 (15:54 -0400)
committerJoey Castillo <joeycastillo@utexas.edu>
Wed, 6 Apr 2022 19:54:31 +0000 (15:54 -0400)
movement/watch_faces/clock/mars_time_face.c

index 609d461b987459227182f5ad2a1573bfbdf97616..8695ecf0475c1c005676d2c9780c978b3a00801a 100644 (file)
@@ -92,7 +92,7 @@ static void _update(movement_settings_t *settings, mars_time_state_t *state) {
         // TODO: this is not right, mission sol should turn over at midnight local time?
         uint16_t sol = floor(msd) - landing_sols[state->current_site];
         if (sol < 1000) sprintf(&buf[0], "%s  Sol%3d", site_names[state->current_site], sol);
-        else sprintf(&buf[0], "%s s%6d", site_names[state->current_site], sol);
+        else sprintf(&buf[0], "%s $%6d", site_names[state->current_site], sol);
         watch_clear_colon();
         watch_clear_indicator(WATCH_INDICATOR_24H);        
     } else {