fix clock:year on rre
FossilOrigin-Name: 6bfb08e7361886b62db852076652a77b731b0bbee2506ea7586f64e137a6cc70
This commit is contained in:
parent
b60016d3af
commit
0d4307f2a9
1 changed files with 1 additions and 1 deletions
|
@ -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() {
|
||||
|
|
Loading…
Reference in a new issue