fix clock:year on rre

FossilOrigin-Name: 6bfb08e7361886b62db852076652a77b731b0bbee2506ea7586f64e137a6cc70
This commit is contained in:
crc 2019-04-24 17:42:12 +00:00
parent b60016d3af
commit 0d4307f2a9

View file

@ -296,7 +296,7 @@ void unix_time_month() {
void unix_time_year() {
time_t t = time(NULL);
stack_push((CELL)localtime(&t)->tm_year);
stack_push((CELL)localtime(&t)->tm_year + 1990);
}
void unix_time_hour() {