From cb609389ebb983cff60af99f7380431d77eaa046 Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Wed, 6 Apr 2022 15:54:31 -0400 Subject: mars clock: use S without cross-stroke for clarity --- movement/watch_faces/clock/mars_time_face.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'movement/watch_faces') diff --git a/movement/watch_faces/clock/mars_time_face.c b/movement/watch_faces/clock/mars_time_face.c index 609d461b..8695ecf0 100644 --- a/movement/watch_faces/clock/mars_time_face.c +++ b/movement/watch_faces/clock/mars_time_face.c @@ -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 { -- cgit v1.2.3