(svn r16325) -Codechange: replace GetPoolItem(index) by PoolItem::Get(index)

This commit is contained in:
smatz
2009-05-16 23:34:14 +00:00
parent 814f153b5a
commit 6221d74644
116 changed files with 645 additions and 637 deletions

View File

@@ -188,7 +188,7 @@ static void RunVehicleDayProc(uint daytick)
uint i;
for (i = daytick; i < total; i += DAY_TICKS) {
Vehicle *v = GetVehicle(i);
Vehicle *v = Vehicle::Get(i);
if (v->IsValid()) {
/* Call the 32-day callback if needed */