get_date on Linux
tm_mon is 0-11
This commit is contained in:
parent
c2e2f2e0ae
commit
69710055f0
1 changed files with 1 additions and 1 deletions
|
@ -242,7 +242,7 @@ OS::Date OS_Unix::get_date(bool utc) const {
|
||||||
lt=localtime(&t);
|
lt=localtime(&t);
|
||||||
Date ret;
|
Date ret;
|
||||||
ret.year=1900+lt->tm_year;
|
ret.year=1900+lt->tm_year;
|
||||||
ret.month=(Month)lt->tm_mon;
|
ret.month=(Month)lt->tm_mon + 1;
|
||||||
ret.day=lt->tm_mday;
|
ret.day=lt->tm_mday;
|
||||||
ret.weekday=(Weekday)lt->tm_wday;
|
ret.weekday=(Weekday)lt->tm_wday;
|
||||||
ret.dst=lt->tm_isdst;
|
ret.dst=lt->tm_isdst;
|
||||||
|
|
Loading…
Reference in a new issue