summaryrefslogtreecommitdiff
path: root/src/airport.cpp
diff options
context:
space:
mode:
authoryexo <yexo@openttd.org>2010-02-22 14:09:30 +0000
committeryexo <yexo@openttd.org>2010-02-22 14:09:30 +0000
commit40f6e69ae9d57697fa8c2ac4dc218cb944581696 (patch)
tree2d56d11eae0962db5674aadc23e753db0279621b /src/airport.cpp
parent5052777d0bbbd2322d4bfe2afc3914b9afe26f0d (diff)
downloadopenttd-40f6e69ae9d57697fa8c2ac4dc218cb944581696.tar.xz
(svn r19191) -Codechange: move AirportTileSpec to newgrf_airporttiles.h
Diffstat (limited to 'src/airport.cpp')
-rw-r--r--src/airport.cpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/airport.cpp b/src/airport.cpp
index f4e069357..660b34ee8 100644
--- a/src/airport.cpp
+++ b/src/airport.cpp
@@ -18,7 +18,6 @@
#include "settings_type.h"
#include "table/airporttile_ids.h"
#include "table/airport_defaults.h"
-#include "table/airporttiles.h"
AirportSpec AirportSpec::dummy = {NULL, NULL, 0, 0, 0, 0, 0, MIN_YEAR, MIN_YEAR};
AirportSpec AirportSpec::oilrig = {NULL, NULL, 0, 1, 1, 0, 4, MIN_YEAR, MIN_YEAR};
@@ -37,18 +36,6 @@ AirportSpec AirportSpec::oilrig = {NULL, NULL, 0, 1, 1, 0, 4, MIN_YEAR, MIN_YEAR
return &_origin_airport_specs[type];
}
-/**
- * Retrieve airport tile spec for the given airport tile
- * @param gfx index of airport tile
- * @return A pointer to the corresponding AirportTileSpec
- */
-/* static */ const AirportTileSpec *AirportTileSpec::Get(StationGfx gfx)
-{
- assert(gfx < NUM_AIRPORTTILES);
- extern const AirportTileSpec _origin_airporttile_specs[];
- return &_origin_airporttile_specs[gfx];
-}
-
/* Uncomment this to print out a full report of the airport-structure
* You should either use
* - true: full-report, print out every state and choice with string-names