diff options
author | Wesley Aptekar-Cassels <me@wesleyac.com> | 2024-01-21 02:08:28 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-21 02:08:28 -0500 |
commit | 501ed8f9d2610eb14ea9f3858b296b4565e3d252 (patch) | |
tree | 38e701ff1f61612e160edd17b16e665e3c07f029 /movement/template/template.c | |
parent | 1120690e133fccaafc8fd413add5373ee56eee4a (diff) | |
parent | 45ede8f256622642788193cad15c6b27b417f468 (diff) | |
download | Sensor-Watch-501ed8f9d2610eb14ea9f3858b296b4565e3d252.tar.gz Sensor-Watch-501ed8f9d2610eb14ea9f3858b296b4565e3d252.tar.bz2 Sensor-Watch-501ed8f9d2610eb14ea9f3858b296b4565e3d252.zip |
Merge branch 'main' into watch-face-save-load
Diffstat (limited to 'movement/template/template.c')
-rw-r--r-- | movement/template/template.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/movement/template/template.c b/movement/template/template.c index e03db561..fe2723b8 100644 --- a/movement/template/template.c +++ b/movement/template/template.c @@ -28,6 +28,7 @@ void <#watch_face_name#>_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(<#watch_face_name#>_state_t)); memset(*context_ptr, 0, sizeof(<#watch_face_name#>_state_t)); |