diff options
author | Joey Castillo <joeycastillo@utexas.edu> | 2022-04-06 15:54:31 -0400 |
---|---|---|
committer | Joey Castillo <joeycastillo@utexas.edu> | 2022-04-06 15:54:31 -0400 |
commit | cb609389ebb983cff60af99f7380431d77eaa046 (patch) | |
tree | 51cd5f28e4e40b26d690cd73668b6b8e8bce9bc0 | |
parent | 8bcd5dfef62665af09b6d256a5d2a6de8a083ca0 (diff) | |
download | Sensor-Watch-cb609389ebb983cff60af99f7380431d77eaa046.tar.gz Sensor-Watch-cb609389ebb983cff60af99f7380431d77eaa046.tar.bz2 Sensor-Watch-cb609389ebb983cff60af99f7380431d77eaa046.zip |
mars clock: use S without cross-stroke for clarity
-rw-r--r-- | movement/watch_faces/clock/mars_time_face.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 { |