From e9b7f3f9556c93dc2d9de3b9fd0a2a972960b7c4 Mon Sep 17 00:00:00 2001 From: Joey Castillo Date: Sun, 8 Jun 2025 07:48:25 -0600 Subject: [PATCH] mars time: long press to change time zone --- watch-faces/clock/mars_time_face.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watch-faces/clock/mars_time_face.c b/watch-faces/clock/mars_time_face.c index fdb6de35..3367b706 100644 --- a/watch-faces/clock/mars_time_face.c +++ b/watch-faces/clock/mars_time_face.c @@ -146,7 +146,7 @@ bool mars_time_face_loop(movement_event_t event, void *context) { case EVENT_LIGHT_LONG_PRESS: movement_illuminate_led(); break; - case EVENT_ALARM_BUTTON_UP: + case EVENT_ALARM_LONG_PRESS: state->current_site = (state->current_site + 1) % MARS_TIME_NUM_SITES; _update(state, false); break;