From cd369308aaea64057a5bcd09a4d2156f8974d04d Mon Sep 17 00:00:00 2001 From: Darkvater Date: Tue, 22 Feb 2005 19:38:44 +0000 Subject: (svn r1905) - Fix: [ 1118810 ] openttd: ship_cmd.c:642 ... Assertion failed. Mapwrap fixed in ship_cmd.c (was implicitely ok before biggermaps). - CodeChange: rename all vehicle controllers to ...Controller for their similar behaviour --- roadveh_cmd.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'roadveh_cmd.c') diff --git a/roadveh_cmd.c b/roadveh_cmd.c index 25270fc5e..eca9c65b7 100644 --- a/roadveh_cmd.c +++ b/roadveh_cmd.c @@ -1214,7 +1214,7 @@ static inline void ClearSlot(Vehicle *v, RoadStop *rs) rs->slot[v->u.road.slotindex] = INVALID_SLOT; } -static void RoadVehEventHandler(Vehicle *v) +static void RoadVehController(Vehicle *v) { GetNewVehiclePosResult gp; byte new_dir, old_dir; @@ -1592,7 +1592,7 @@ static void AgeRoadVehCargo(Vehicle *v) void RoadVeh_Tick(Vehicle *v) { AgeRoadVehCargo(v); - RoadVehEventHandler(v); + RoadVehController(v); } static void CheckIfRoadVehNeedsService(Vehicle *v) -- cgit v1.2.3-54-g00ecf