src/station_cmd.cpp
changeset 7379 5afd3c499c4d
parent 7377 b6479e048c6e
child 7469 2c1dd5ce245d
--- a/src/station_cmd.cpp	Thu Aug 02 10:47:00 2007 +0000
+++ b/src/station_cmd.cpp	Thu Aug 02 10:47:43 2007 +0000
@@ -2849,12 +2849,12 @@
 void InitializeStations()
 {
 	/* Clean the station pool and create 1 block in it */
-	CleanPool(&_Station_pool);
-	AddBlockToPool(&_Station_pool);
+	_Station_pool.CleanPool();
+	_Station_pool.AddBlockToPool();
 
 	/* Clean the roadstop pool and create 1 block in it */
-	CleanPool(&_RoadStop_pool);
-	AddBlockToPool(&_RoadStop_pool);
+	_RoadStop_pool.CleanPool();
+	_RoadStop_pool.AddBlockToPool();
 
 	_station_tick_ctr = 0;