summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoey Castillo <joeycastillo@utexas.edu>2022-04-06 15:55:06 -0400
committerJoey Castillo <joeycastillo@utexas.edu>2022-04-06 15:55:06 -0400
commitc4de155083d1f5574138976d7d697e572dc12a03 (patch)
tree6969e05832792074c9324d85232fdfe7f21ef481
parentcb609389ebb983cff60af99f7380431d77eaa046 (diff)
downloadSensor-Watch-c4de155083d1f5574138976d7d697e572dc12a03.tar.gz
Sensor-Watch-c4de155083d1f5574138976d7d697e572dc12a03.tar.bz2
Sensor-Watch-c4de155083d1f5574138976d7d697e572dc12a03.zip
mars clock: formatting
-rw-r--r--movement/watch_faces/clock/mars_time_face.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/movement/watch_faces/clock/mars_time_face.c b/movement/watch_faces/clock/mars_time_face.c
index 8695ecf0..7753ae72 100644
--- a/movement/watch_faces/clock/mars_time_face.c
+++ b/movement/watch_faces/clock/mars_time_face.c
@@ -94,13 +94,13 @@ static void _update(movement_settings_t *settings, mars_time_state_t *state) {
if (sol < 1000) sprintf(&buf[0], "%s Sol%3d", 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);
+ watch_clear_indicator(WATCH_INDICATOR_24H);
} else {
mars_clock_hms_t mars_time;
_h_to_hms(&mars_time, lmt);
sprintf(&buf[0], "%s %02d%02d%02d", site_names[state->current_site], mars_time.hour, mars_time.minute, mars_time.second);
watch_set_colon();
- watch_set_indicator(WATCH_INDICATOR_24H);
+ watch_set_indicator(WATCH_INDICATOR_24H);
}
watch_display_string(buf, 0);