(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
This commit is contained in:
Darkvater
2005-02-22 19:38:44 +00:00
parent df46c50d1c
commit cd369308aa
3 changed files with 7 additions and 10 deletions

View File

@@ -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)