(svn r25333) -Fix: Potential signedness issue.

replace/41b28d7194a279bdc17475d4fbe2ea6ec885a466
frosch 11 years ago
parent a23b84fdfc
commit 5bb1d01af9

@ -205,7 +205,7 @@ static void OnNewYear()
/* check if we reached the maximum year, decrement dates by a year */
} else if (_cur_year == MAX_YEAR + 1) {
Vehicle *v;
uint days_this_year;
int days_this_year;
_cur_year--;
days_this_year = IsLeapYear(_cur_year) ? DAYS_IN_LEAP_YEAR : DAYS_IN_YEAR;

Loading…
Cancel
Save