29.11.2016, 17:47
In order to fix the "Array index out of bounds" issue change line 89:
to:
Код:
if(day > MonthTimes[month][IsLeapYear(year)])
Код:
if(day > MonthTimes[month-1][IsLeapYear(year)])