]> git.earman.xyz Git - sensor-watch.git/commitdiff
revert tweak to 'world' card
authorjoeycastillo <joeycastillo@utexas.edu>
Wed, 11 Jan 2023 18:45:11 +0000 (13:45 -0500)
committerjoeycastillo <joeycastillo@utexas.edu>
Wed, 11 Jan 2023 18:45:11 +0000 (13:45 -0500)
movement/watch_faces/complication/tarot_face.c

index 00d7a12d06e526eb2eaae984a3cd0559f5351f12..04c553605a31b2ac9ce7fadbc4b9049affc278b1 100644 (file)
@@ -63,7 +63,7 @@ static char *major_arcana[] = {
     "n&OON ", // Moon
     "  Sun ",
     "Jdgmnt",
-    "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 {