Skip to content

Commit

Permalink
DS Classic Menu: Fix calendar marker placement
Browse files Browse the repository at this point in the history
  • Loading branch information
RocketRobz committed Aug 13, 2024
1 parent f8e1bc6 commit 1ad4128
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion quickmenu/arm9/source/graphics/graphics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -852,7 +852,7 @@ static void calendarTextDraw(const Datetime& now) {
// Draw marker
{
int myPos = (startWeekday + now.getDay() - 1) / 7;
markerDraw(calendarXPos+now.getWeekDay()*16+4, calendarYPos+myPos*14+36);
markerDraw(calendarXPos+now.getWeekDay()*16+4, calendarYPos+myPos*16+34);
}

// Draw dates
Expand Down

0 comments on commit 1ad4128

Please sign in to comment.