(svn r13594) -Feature(ette)[FS#2093]: Supply newgrfs with 'day of month', 'leap year' and 'day of year'.

This commit is contained in:
frosch
2008-06-20 21:14:10 +00:00
parent 3d56c07440
commit aadd3b29af
4 changed files with 13 additions and 9 deletions

View File

@@ -46,8 +46,8 @@ typedef uint8 Day;
struct YearMonthDay {
Year year;
Month month;
Day day;
Month month; ///< 0 - 11
Day day; ///< 1 - 31
};
static const Year INVALID_YEAR = -1;