From 6b7ea8bbaa44c7b553cbcc06f65dfcefdd425330 Mon Sep 17 00:00:00 2001 From: Matheus Afonso Martins Moreira Date: Sun, 8 Sep 2024 18:39:55 -0300 Subject: [PATCH] faces/tally: add yugioh life point presets Add common Yu-Gi-Oh card game life point preset values for the tally face, opt in by defining a preprocessor macro. --- movement/watch_faces/complication/tally_face.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/movement/watch_faces/complication/tally_face.c b/movement/watch_faces/complication/tally_face.c index fb44df221..4da36cb2a 100644 --- a/movement/watch_faces/complication/tally_face.c +++ b/movement/watch_faces/complication/tally_face.c @@ -41,6 +41,11 @@ static const int16_t _tally_default[] = { 40, #endif /* TALLY_FACE_PRESETS_MTG */ +#ifdef TALLY_FACE_PRESETS_YUGIOH + 4000, + 8000, +#endif /* TALLY_FACE_PRESETS_YUGIOH */ + }; static const uint8_t _tally_default_size = sizeof(_tally_default) / sizeof(int16_t);