Skip to content

Commit

Permalink
Merge pull request #424 from edwardspeyer/bug-fix-july-31
Browse files Browse the repository at this point in the history
Allow setting July 31st as today's date
  • Loading branch information
theAlexes authored Jul 31, 2024
2 parents 42c14c2 + 278520b commit e732afb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion movement/watch_faces/settings/set_time_face.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ static bool _quick_ticks_running;

static void _handle_alarm_button(movement_settings_t *settings, watch_date_time date_time, uint8_t current_page) {
// handles short or long pressing of the alarm button
const uint8_t days_in_month[12] = {31, 28, 31, 30, 31, 30, 30, 31, 30, 31, 30, 31};
const uint8_t days_in_month[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};

switch (current_page) {
case 0: // hour
Expand Down

0 comments on commit e732afb

Please sign in to comment.