src/openttd.cpp
changeset 7401 7a72cc2a1196
parent 7393 f3d27c82fec3
child 7408 605b333582d5
equal deleted inserted replaced
7400:e211c7b9cb8f 7401:7a72cc2a1196
   300 
   300 
   301 	/* Uninitialize airport state machines */
   301 	/* Uninitialize airport state machines */
   302 	UnInitializeAirports();
   302 	UnInitializeAirports();
   303 
   303 
   304 	/* Uninitialize variables that are allocated dynamically */
   304 	/* Uninitialize variables that are allocated dynamically */
   305 	CleanPool(&_Town_pool);
   305 	_Town_pool.CleanPool();
   306 	CleanPool(&_Industry_pool);
   306 	_Industry_pool.CleanPool();
   307 	CleanPool(&_Station_pool);
   307 	_Station_pool.CleanPool();
   308 	CleanPool(&_Vehicle_pool);
   308 	_Vehicle_pool.CleanPool();
   309 	CleanPool(&_Sign_pool);
   309 	_Sign_pool.CleanPool();
   310 	CleanPool(&_Order_pool);
   310 	_Order_pool.CleanPool();
   311 	CleanPool(&_Group_pool);
   311 	_Group_pool.CleanPool();
   312 	CleanPool(&_CargoPacket_pool);
   312 	_CargoPacket_pool.CleanPool();
   313 
   313 
   314 	free((void*)_town_sort);
   314 	free((void*)_town_sort);
   315 	free((void*)_industry_sort);
   315 	free((void*)_industry_sort);
   316 
   316 
   317 	free(_config_file);
   317 	free(_config_file);