From c45fed8ea97818b4d291dab3ee57c9a1a4bd6fb9 Mon Sep 17 00:00:00 2001 From: David Volovskiy Date: Sat, 6 Sep 2025 11:49:00 -0400 Subject: [PATCH] Got rid of fallthrough warnings --- watch-faces/complication/fast_stopwatch_face.c | 2 +- watch-faces/io/chirpy_demo_face.c | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/watch-faces/complication/fast_stopwatch_face.c b/watch-faces/complication/fast_stopwatch_face.c index 63ef7176..70c1de96 100644 --- a/watch-faces/complication/fast_stopwatch_face.c +++ b/watch-faces/complication/fast_stopwatch_face.c @@ -326,7 +326,7 @@ bool fast_stopwatch_face_loop(movement_event_t event, void *context) { case EVENT_LIGHT_BUTTON_DOWN: case EVENT_LIGHT_LONG_PRESS: _button_beep(); - // Fall into the case below; + // fall through case EVENT_TICK: _draw_indicators(state, event, elapsed); _display_elapsed(state, elapsed); diff --git a/watch-faces/io/chirpy_demo_face.c b/watch-faces/io/chirpy_demo_face.c index 3a7ff300..f676e179 100644 --- a/watch-faces/io/chirpy_demo_face.c +++ b/watch-faces/io/chirpy_demo_face.c @@ -261,6 +261,7 @@ bool chirpy_demo_face_loop(movement_event_t event, void *context) { if (state->mode != CDM_CHIRPING) { movement_move_to_face(0); } + // fall through default: movement_default_loop_handler(event); break;