Skip to content

Commit

Permalink
While likely unneeded now, I readded the logic to change the birthday…
Browse files Browse the repository at this point in the history
… from 0 to 1 in day_one_face as that's how it was before I began touching it
  • Loading branch information
voloved committed Oct 17, 2024
1 parent 2e8c0e7 commit d037a6c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions movement/watch_faces/complication/day_one_face.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ static void _day_one_face_increment(day_one_state_t *state) {
break;
case PAGE_DAY:
state->birth_day = (state->birth_day % watch_utility_days_in_month(state->birth_month, state->birth_year)) + 1;
if (state->birth_day == 0) {
state->birth_day = 1;
}
break;
default:
break;
Expand Down

0 comments on commit d037a6c

Please sign in to comment.