1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-21 13:39:09 +00:00

(svn r2041) -Fix: not all vehicles did get a day_proc call (because of rounding errors)

This commit is contained in:
truelight
2005-03-24 13:59:44 +00:00
parent ccd6a0614f
commit 88ef277dc3
4 changed files with 48 additions and 31 deletions

View File

@@ -423,8 +423,7 @@ static void FixOldVehicles(void)
}
}
if (_vehicle_id_ctr_day > GetVehiclePoolSize())
_vehicle_id_ctr_day = 0;
_vehicle_id_ctr_day = 0;
}
/*