diff options
author | Joey Castillo <joeycastillo@utexas.edu> | 2022-02-05 16:06:02 -0500 |
---|---|---|
committer | Joey Castillo <joeycastillo@utexas.edu> | 2022-02-05 16:06:02 -0500 |
commit | 505f6920377cbc6efdfaf3cafc6c52bda80d85c3 (patch) | |
tree | f5eb57e2e73647e510a80164a6148d8a3330da12 | |
parent | 74e47f9857101443a40842cbd7d815289c83e135 (diff) | |
download | Sensor-Watch-505f6920377cbc6efdfaf3cafc6c52bda80d85c3.tar.gz Sensor-Watch-505f6920377cbc6efdfaf3cafc6c52bda80d85c3.tar.bz2 Sensor-Watch-505f6920377cbc6efdfaf3cafc6c52bda80d85c3.zip |
sunrise/sunset: align date at extreme latitudes
-rw-r--r-- | movement/watch_faces/complication/sunrise_sunset_face.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/movement/watch_faces/complication/sunrise_sunset_face.c b/movement/watch_faces/complication/sunrise_sunset_face.c index c604ff71..1e6f3425 100644 --- a/movement/watch_faces/complication/sunrise_sunset_face.c +++ b/movement/watch_faces/complication/sunrise_sunset_face.c @@ -75,7 +75,7 @@ static void _sunrise_sunset_face_update(movement_settings_t *settings, sunrise_s watch_clear_colon(); watch_clear_indicator(WATCH_INDICATOR_PM); watch_clear_indicator(WATCH_INDICATOR_24H); - sprintf(buf, "%s%d none ", (result == 1) ? "SE" : "rI", scratch_time.unit.day); + sprintf(buf, "%s%2d none ", (result == 1) ? "SE" : "rI", scratch_time.unit.day); watch_display_string(buf, 0); return; } |