1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-15 04:15:26 +03:00

Replaced all 1900 with TM_YEAR_BASE

This commit is contained in:
Damjan Adamic 2016-10-30 11:03:07 +01:00
parent 6378c97b33
commit 37ea272bd4
15 changed files with 23 additions and 23 deletions

View file

@ -425,7 +425,7 @@ char * strAppendDate(char * str, bool time)
str[0] = '-';
struct gtm utm;
gettime(&utm);
div_t qr = div(utm.tm_year+1900, 10);
div_t qr = div(utm.tm_year+TM_YEAR_BASE, 10);
str[4] = '0' + qr.rem;
qr = div(qr.quot, 10);
str[3] = '0' + qr.rem;