summaryrefslogtreecommitdiffstats
path: root/movement/watch_faces/complications/stopwatch_face.c
diff options
context:
space:
mode:
Diffstat (limited to 'movement/watch_faces/complications/stopwatch_face.c')
-rw-r--r--movement/watch_faces/complications/stopwatch_face.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/movement/watch_faces/complications/stopwatch_face.c b/movement/watch_faces/complications/stopwatch_face.c
index d1d1ee73..4a145abf 100644
--- a/movement/watch_faces/complications/stopwatch_face.c
+++ b/movement/watch_faces/complications/stopwatch_face.c
@@ -3,8 +3,9 @@
#include "stopwatch_face.h"
#include "watch.h"
-void stopwatch_face_setup(movement_settings_t *settings, void ** context_ptr) {
+void stopwatch_face_setup(movement_settings_t *settings, uint8_t watch_face_index, void ** context_ptr) {
(void) settings;
+ (void) watch_face_index;
if (*context_ptr == NULL) *context_ptr = malloc(sizeof(stopwatch_state_t));
}