From 49d69f6fa3882d4af9384bda65eb8c5f11ce28dd Mon Sep 17 00:00:00 2001 From: truelight Date: Thu, 24 Mar 2005 13:59:44 +0000 Subject: (svn r2041) -Fix: not all vehicles did get a day_proc call (because of rounding errors) --- oldloader.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'oldloader.c') diff --git a/oldloader.c b/oldloader.c index c3b5f01b8..89a8da27c 100644 --- a/oldloader.c +++ b/oldloader.c @@ -423,8 +423,7 @@ static void FixOldVehicles(void) } } - if (_vehicle_id_ctr_day > GetVehiclePoolSize()) - _vehicle_id_ctr_day = 0; + _vehicle_id_ctr_day = 0; } /* -- cgit v1.2.3-54-g00ecf