(svn r19323) -Codechange: copy the AirportSpec original array to an internal array in AirportSpec

This commit is contained in:
yexo
2010-03-05 23:21:23 +00:00
parent 4768c3f87c
commit e69d50d86b
3 changed files with 21 additions and 3 deletions

View File

@@ -50,8 +50,13 @@ struct AirportSpec {
bool IsAvailable() const;
static void ResetAirports();
static AirportSpec dummy;
static AirportSpec oilrig;
private:
static AirportSpec specs[NUM_AIRPORTS];
};