summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjoeycastillo <joeycastillo@utexas.edu>2023-01-11 13:45:11 -0500
committerjoeycastillo <joeycastillo@utexas.edu>2023-01-11 13:45:11 -0500
commit784defcd552eaba04e45c7f6c77ced1515b0d329 (patch)
tree3db098ab2e42e6f403e4e2dd269a93fd48e30b73
parente43a43944fc3766effb01058a2bc64701a27009c (diff)
downloadSensor-Watch-784defcd552eaba04e45c7f6c77ced1515b0d329.tar.gz
Sensor-Watch-784defcd552eaba04e45c7f6c77ced1515b0d329.tar.bz2
Sensor-Watch-784defcd552eaba04e45c7f6c77ced1515b0d329.zip
revert tweak to 'world' card
-rw-r--r--movement/watch_faces/complication/tarot_face.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/movement/watch_faces/complication/tarot_face.c b/movement/watch_faces/complication/tarot_face.c
index 00d7a12d..04c55360 100644
--- a/movement/watch_faces/complication/tarot_face.c
+++ b/movement/watch_faces/complication/tarot_face.c
@@ -63,7 +63,7 @@ static char *major_arcana[] = {
"n&OON ", // Moon
" Sun ",
"Jdgmnt",
- "W orld",
+ " World",
};
#define NUM_TAROT_CARDS (sizeof(major_arcana) / sizeof(*major_arcana))
@@ -97,12 +97,6 @@ static void tarot_display(tarot_state_t *state) {
card &= ~FLIPPED_MASK; // remove the flipped bit
sprintf(buf, "%s", major_arcana[card]);
watch_display_string(buf, 4);
- if (state->drawn_cards[state->current_card] == WORLD_CARD_INDEX) {
- // special tweak for "World"
- watch_set_pixel(1, 20);
- watch_set_pixel(2, 21);
- watch_set_pixel(1, 17);
- }
if (flipped) {
watch_set_indicator(WATCH_INDICATOR_SIGNAL);
} else {