summaryrefslogtreecommitdiffstats
path: root/movement/watch_faces
diff options
context:
space:
mode:
authorJoey Castillo <joeycastillo@utexas.edu>2022-04-06 15:54:31 -0400
committerJoey Castillo <joeycastillo@utexas.edu>2022-04-06 15:54:31 -0400
commitcb609389ebb983cff60af99f7380431d77eaa046 (patch)
tree51cd5f28e4e40b26d690cd73668b6b8e8bce9bc0 /movement/watch_faces
parent8bcd5dfef62665af09b6d256a5d2a6de8a083ca0 (diff)
downloadSensor-Watch-cb609389ebb983cff60af99f7380431d77eaa046.tar.gz
Sensor-Watch-cb609389ebb983cff60af99f7380431d77eaa046.tar.bz2
Sensor-Watch-cb609389ebb983cff60af99f7380431d77eaa046.zip
mars clock: use S without cross-stroke for clarity
Diffstat (limited to 'movement/watch_faces')
-rw-r--r--movement/watch_faces/clock/mars_time_face.c2
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 {