summaryrefslogtreecommitdiffstats
path: root/movement/template
diff options
context:
space:
mode:
authorSpencer Bywater <spencer.bywater@gmail.com>2022-04-20 08:40:55 -0700
committerGitHub <noreply@github.com>2022-04-20 11:40:55 -0400
commit949ca2227ffca6a3f05c5ae0972fbc2c1a54d255 (patch)
tree2523575d8d2bad37563702833f4a3579f3d94892 /movement/template
parent8019563072d4be485ca69359ff0c3863cb03b6e7 (diff)
downloadSensor-Watch-949ca2227ffca6a3f05c5ae0972fbc2c1a54d255.tar.gz
Sensor-Watch-949ca2227ffca6a3f05c5ae0972fbc2c1a54d255.tar.bz2
Sensor-Watch-949ca2227ffca6a3f05c5ae0972fbc2c1a54d255.zip
Add break statement for EVENT_TICK in watch_face template (#64)
Diffstat (limited to 'movement/template')
-rw-r--r--movement/template/template.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/movement/template/template.c b/movement/template/template.c
index c9c174b6..91611d08 100644
--- a/movement/template/template.c
+++ b/movement/template/template.c
@@ -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();