diff options
author | richk <richk@openttd.org> | 2007-02-17 15:17:47 +0000 |
---|---|---|
committer | richk <richk@openttd.org> | 2007-02-17 15:17:47 +0000 |
commit | df183d788e1687d7389cfab5dac07a6c65ee7e22 (patch) | |
tree | bf8bc8d3b1f35d6a81cd31ed3be3214e28afc202 | |
parent | e175a85e1005b30629c43017e44afbb9accb3b94 (diff) | |
download | openttd-df183d788e1687d7389cfab5dac07a6c65ee7e22.tar.xz |
(svn r8780) -Fix: Spelling of CatchmentArea incorrect.
-rw-r--r-- | src/station.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/station.h b/src/station.h index b4ac9a2b3..d800c24ab 100644 --- a/src/station.h +++ b/src/station.h @@ -205,13 +205,13 @@ enum { HVOT_BUOY = 1 << 6 }; -typedef enum CatchmentAeras { +typedef enum CatchmentAreas { CA_NONE = 0, CA_BUS = 3, CA_TRUCK = 3, CA_TRAIN = 4, CA_DOCK = 5 -} CatchmentAera; +} CatchmentArea; void ModifyStationRatingAround(TileIndex tile, PlayerID owner, int amount, uint radius); |