summaryrefslogtreecommitdiffstats
path: root/movement/watch_faces/complication/tarot_face.h
diff options
context:
space:
mode:
Diffstat (limited to 'movement/watch_faces/complication/tarot_face.h')
-rw-r--r--movement/watch_faces/complication/tarot_face.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/movement/watch_faces/complication/tarot_face.h b/movement/watch_faces/complication/tarot_face.h
index 1ef201fa..e9ffc896 100644
--- a/movement/watch_faces/complication/tarot_face.h
+++ b/movement/watch_faces/complication/tarot_face.h
@@ -27,10 +27,13 @@
#include "movement.h"
+#define MAX_CARDS_TO_DRAW 10
+
typedef struct {
- uint8_t drawn_cards[3];
+ uint8_t drawn_cards[MAX_CARDS_TO_DRAW];
uint8_t current_card;
uint8_t animation_frame;
+ uint8_t num_cards_to_draw;
bool is_picking;
} tarot_state_t;