summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjoeycastillo <joeycastillo@utexas.edu>2023-01-11 12:15:42 -0500
committerjoeycastillo <joeycastillo@utexas.edu>2023-01-11 12:15:42 -0500
commitdc5290410eb56c7d4974950d469d84c3a6602eb4 (patch)
treecc4d6096644ba524aa75416858d6de76555772cb
parenta0524ba4e6bbb65eef9a4a1f1d4f5039241a2cf9 (diff)
downloadSensor-Watch-dc5290410eb56c7d4974950d469d84c3a6602eb4.tar.gz
Sensor-Watch-dc5290410eb56c7d4974950d469d84c3a6602eb4.tar.bz2
Sensor-Watch-dc5290410eb56c7d4974950d469d84c3a6602eb4.zip
tweak some arcana for readability
-rw-r--r--movement/watch_faces/complication/tarot_face.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/movement/watch_faces/complication/tarot_face.c b/movement/watch_faces/complication/tarot_face.c
index f845fa12..fd8df139 100644
--- a/movement/watch_faces/complication/tarot_face.c
+++ b/movement/watch_faces/complication/tarot_face.c
@@ -43,23 +43,23 @@
static char *major_arcana[NUM_TAROT_CARDS] = {
" FOOL ",
"Mgcian",
- "HiPrst",
- "Empres",
- "Empror",
+ "HPrsts",
+ "En&prs", // Empress
+ "En&por", // Emperor
"Hiroph",
"Lovers",
"Chriot",
"Strgth",
- "Hermit",
+ "Hrn&it", // Hermit
" Frtun",
"Justce",
- "HngMan",
+ "Hangn&", // Hangman
" Death",
" tmprn",
" Devil",
" Tower",
" Star",
- " MOON ",
+ "n&OON ", // Moon
" Sun ",
"Jdgmnt",
" World",
@@ -165,7 +165,9 @@ bool tarot_face_loop(movement_event_t event, movement_settings_t *settings, void
switch (event.event_type) {
case EVENT_ACTIVATE:
- watch_display_string(" DRAW ", 4);
+ watch_display_string(" draWW", 4);
+ watch_clear_pixel(2, 3);
+ watch_clear_pixel(1, 4);
break;
case EVENT_TICK:
display_animation(state);