diff --git a/watch-faces/complication/moon_phase_face.c b/watch-faces/complication/moon_phase_face.c index d2f45fff..cd984c46 100644 --- a/watch-faces/complication/moon_phase_face.c +++ b/watch-faces/complication/moon_phase_face.c @@ -79,30 +79,30 @@ static void _update(moon_phase_state_t *state, uint32_t offset) { watch_display_text(WATCH_POSITION_BOTTOM, "Crecie"); watch_display_text_with_fallback(WATCH_POSITION_TOP_LEFT, "WAX", " "); if (watch_get_lcd_type() == WATCH_LCD_TYPE_CLASSIC) { - watch_set_pixel(2, 13); - watch_set_pixel(2, 15); - if (currentfrac > 0.125) watch_set_pixel(1, 13); + watch_set_pixel(0, 14); + watch_set_pixel(0, 13); + if (currentfrac > 0.125) watch_set_pixel(2, 14); } break; case 2: watch_display_text_with_fallback(WATCH_POSITION_BOTTOM, "1stQtr", "4#Crec"); watch_display_text_with_fallback(WATCH_POSITION_TOP_LEFT, "WAX", " "); if (watch_get_lcd_type() == WATCH_LCD_TYPE_CLASSIC) { - watch_set_pixel(2, 13); - watch_set_pixel(2, 15); - watch_set_pixel(1, 13); watch_set_pixel(1, 14); + watch_set_pixel(2, 14); + watch_set_pixel(0, 14); + watch_set_pixel(0, 13); } break; case 3: watch_display_text_with_fallback(WATCH_POSITION_BOTTOM, "GbboUs", " GibCr"); watch_display_text_with_fallback(WATCH_POSITION_TOP_LEFT, "WAX", " "); if (watch_get_lcd_type() == WATCH_LCD_TYPE_CLASSIC) { - watch_set_pixel(2, 13); - watch_set_pixel(2, 15); watch_set_pixel(1, 14); - watch_set_pixel(1, 13); + watch_set_pixel(2, 14); watch_set_pixel(1, 15); + watch_set_pixel(0, 14); + watch_set_pixel(0, 13); } break; case 4: @@ -123,30 +123,30 @@ static void _update(moon_phase_state_t *state, uint32_t offset) { watch_display_text_with_fallback(WATCH_POSITION_BOTTOM, "GbboUs", " GibMe"); watch_display_text_with_fallback(WATCH_POSITION_TOP_LEFT, "WAN", " "); if (watch_get_lcd_type() == WATCH_LCD_TYPE_CLASSIC) { + watch_set_pixel(2, 13); + watch_set_pixel(2, 15); watch_set_pixel(1, 14); - watch_set_pixel(2, 14); + watch_set_pixel(1, 13); watch_set_pixel(1, 15); - watch_set_pixel(0, 14); - watch_set_pixel(0, 13); } break; case 6: watch_display_text_with_fallback(WATCH_POSITION_BOTTOM, "3rdQtr", "4#meng"); watch_display_text_with_fallback(WATCH_POSITION_TOP_LEFT, "WAN", " "); if (watch_get_lcd_type() == WATCH_LCD_TYPE_CLASSIC) { + watch_set_pixel(2, 13); + watch_set_pixel(2, 15); + watch_set_pixel(1, 13); watch_set_pixel(1, 14); - watch_set_pixel(2, 14); - watch_set_pixel(0, 14); - watch_set_pixel(0, 13); } break; case 7: watch_display_text(WATCH_POSITION_BOTTOM, "MENGUA"); watch_display_text_with_fallback(WATCH_POSITION_TOP_LEFT, "WAN", " "); if (watch_get_lcd_type() == WATCH_LCD_TYPE_CLASSIC) { - watch_set_pixel(0, 14); - watch_set_pixel(0, 13); - if (currentfrac < 0.875) watch_set_pixel(2, 14); + watch_set_pixel(2, 13); + watch_set_pixel(2, 15); + if (currentfrac < 0.875) watch_set_pixel(1, 13); } break; }