diff options
author | Joey Castillo <joeycastillo@utexas.edu> | 2022-02-12 22:34:36 -0500 |
---|---|---|
committer | Joey Castillo <joeycastillo@utexas.edu> | 2022-02-13 11:25:28 -0500 |
commit | 0bb267c702be08f420efffc7dd66782c7563e130 (patch) | |
tree | 86f46a661bfec380efa2295cc214f8e37b2c7e6d /movement/watch_faces | |
parent | 96017d6ec1816ab1c9bd95b0308b908b4708d388 (diff) | |
download | Sensor-Watch-0bb267c702be08f420efffc7dd66782c7563e130.tar.gz Sensor-Watch-0bb267c702be08f420efffc7dd66782c7563e130.tar.bz2 Sensor-Watch-0bb267c702be08f420efffc7dd66782c7563e130.zip |
movement: start time zone list at UTC
Diffstat (limited to 'movement/watch_faces')
-rw-r--r-- | movement/watch_faces/clock/world_clock_face.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/movement/watch_faces/clock/world_clock_face.c b/movement/watch_faces/clock/world_clock_face.c index 6910eca0..de4eeaff 100644 --- a/movement/watch_faces/clock/world_clock_face.c +++ b/movement/watch_faces/clock/world_clock_face.c @@ -36,7 +36,7 @@ void world_clock_face_setup(movement_settings_t *settings, uint8_t watch_face_in world_clock_state_t *state = (world_clock_state_t *)*context_ptr; state->settings.char_0 = 0; state->settings.char_1 = 0; - state->settings.timezone_index = 16; // start at UTC + state->settings.timezone_index = 0; // start at UTC } } |