]> git.earman.xyz Git - sensor-watch.git/commitdiff
Add break statement for EVENT_TICK in watch_face template (#64)
authorSpencer Bywater <spencer.bywater@gmail.com>
Wed, 20 Apr 2022 15:40:55 +0000 (08:40 -0700)
committerGitHub <noreply@github.com>
Wed, 20 Apr 2022 15:40:55 +0000 (11:40 -0400)
movement/template/template.c

index c9c174b6ea3e4ed38b162437a5f9edd665951464..91611d08f4ba650a70d29a904ebd1aa56180e28e 100644 (file)
@@ -52,6 +52,7 @@ bool <#watch_face_name#>_face_loop(movement_event_t event, movement_settings_t *
             break;
         case EVENT_TICK:
             // If needed, update your display here.
+            break;
         case EVENT_MODE_BUTTON_UP:
             // You shouldn't need to change this case; Mode almost always moves to the next watch face.
             movement_move_to_next_face();