From 231111ce3d3d37c05a71591a4760a6dc95beac69 Mon Sep 17 00:00:00 2001 From: matthijs Date: Sun, 3 Dec 2006 17:27:43 +0000 Subject: (svn r7331) - Codechange: Rename all memory pool macro's and types to "old pool", so the new pool implementation can be committed alongside it. - Codechange: Rename pool.[ch] to oldpool.[ch]. --- vehicle.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vehicle.h') diff --git a/vehicle.h b/vehicle.h index 3dde48548..9f842b155 100644 --- a/vehicle.h +++ b/vehicle.h @@ -3,7 +3,7 @@ #ifndef VEHICLE_H #define VEHICLE_H -#include "pool.h" +#include "oldpool.h" #include "order.h" #include "rail.h" @@ -368,7 +368,7 @@ Direction GetDirectionTowards(const Vehicle* v, int x, int y); #define BEGIN_ENUM_WAGONS(v) do { #define END_ENUM_WAGONS(v) } while ( (v=v->next) != NULL); -DECLARE_POOL(Vehicle, Vehicle, 9, 125) +DECLARE_OLD_POOL(Vehicle, Vehicle, 9, 125) static inline VehicleID GetVehicleArraySize(void) { -- cgit v1.2.3-54-g00ecf