(svn r8780) -Fix: Spelling of CatchmentArea incorrect.

This commit is contained in:
richk 2007-02-17 15:17:47 +00:00
parent a74fad50fa
commit 992916349d
1 changed files with 2 additions and 2 deletions

View File

@ -205,13 +205,13 @@ enum {
HVOT_BUOY = 1 << 6 HVOT_BUOY = 1 << 6
}; };
typedef enum CatchmentAeras { typedef enum CatchmentAreas {
CA_NONE = 0, CA_NONE = 0,
CA_BUS = 3, CA_BUS = 3,
CA_TRUCK = 3, CA_TRUCK = 3,
CA_TRAIN = 4, CA_TRAIN = 4,
CA_DOCK = 5 CA_DOCK = 5
} CatchmentAera; } CatchmentArea;
void ModifyStationRatingAround(TileIndex tile, PlayerID owner, int amount, uint radius); void ModifyStationRatingAround(TileIndex tile, PlayerID owner, int amount, uint radius);