(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].
This commit is contained in:
@@ -68,8 +68,8 @@ static void RoadStopPoolNewBlock(uint start_item)
|
||||
for (rs = GetRoadStop(start_item); rs != NULL; rs = (rs->index + 1U < GetRoadStopPoolSize()) ? GetRoadStop(rs->index + 1U) : NULL) rs->index = start_item++;
|
||||
}
|
||||
|
||||
DEFINE_POOL(Station, Station, StationPoolNewBlock, StationPoolCleanBlock)
|
||||
DEFINE_POOL(RoadStop, RoadStop, RoadStopPoolNewBlock, NULL)
|
||||
DEFINE_OLD_POOL(Station, Station, StationPoolNewBlock, StationPoolCleanBlock)
|
||||
DEFINE_OLD_POOL(RoadStop, RoadStop, RoadStopPoolNewBlock, NULL)
|
||||
|
||||
|
||||
extern void UpdateAirplanesOnNewStation(Station *st);
|
||||
|
||||
Reference in New Issue
Block a user