diff options
author | joeycastillo <joeycastillo@utexas.edu> | 2023-01-11 12:15:42 -0500 |
---|---|---|
committer | joeycastillo <joeycastillo@utexas.edu> | 2023-01-11 12:15:42 -0500 |
commit | dc5290410eb56c7d4974950d469d84c3a6602eb4 (patch) | |
tree | cc4d6096644ba524aa75416858d6de76555772cb | |
parent | a0524ba4e6bbb65eef9a4a1f1d4f5039241a2cf9 (diff) | |
download | Sensor-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.c | 16 |
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); |