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:
parent
6378c97b33
commit
37ea272bd4
15 changed files with 23 additions and 23 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue