src/airport.cpp
branchNewGRF_ports
changeset 6837 c39d50afbaf0
parent 6823 afccaf7e9674
child 6853 b3b8bb6c0a48
--- a/src/airport.cpp	Thu Aug 16 08:22:36 2007 +0000
+++ b/src/airport.cpp	Thu Aug 16 08:23:58 2007 +0000
@@ -12,7 +12,6 @@
 #include "date.h"
 #include "helpers.hpp"
 #include "newgrf_fsmports.h"
-#include "airport_movement.h"
 
 /* Uncomment this to print out a full report of the airport-structure
  * You should either use
@@ -21,31 +20,6 @@
  * - false: give a summarized report which only shows current and next position */
 //#define DEBUG_AIRPORT false
 
-AirportFTAClass *DummyAirport;
-
-void InitializeAirports()
-{
-	DummyAirport = new AirportFTAClass(
-		_airport_moving_data_dummy,
-		NULL,
-		NULL,
-		_airport_entries_dummy,
-		AirportFTAClass::ALL,
-		_airport_fta_dummy,
-		NULL,
-		0,
-		0, 0,
-		0,
-		0
-	);
-}
-
-void UnInitializeAirports()
-{
-	delete DummyAirport;
-}
-
-
 static uint16 AirportGetNofElements(const AirportFTAbuildup *apFA);
 static AirportFTA* AirportBuildAutomata(uint nofelements, const AirportFTAbuildup *apFA);
 static byte AirportGetTerminalCount(const byte *terminals, byte *groups);