diff options
author | glx <glx@openttd.org> | 2007-10-31 18:53:49 +0000 |
---|---|---|
committer | glx <glx@openttd.org> | 2007-10-31 18:53:49 +0000 |
commit | 2b4d1fff89e1b2d566cfb2f606a0d2995d25f0fd (patch) | |
tree | db43312cb9063663e1fbb112ce183237b3608015 /src | |
parent | 87fcd4b6d701f384615472c5af5eb73c9613fdec (diff) | |
download | openttd-2b4d1fff89e1b2d566cfb2f606a0d2995d25f0fd.tar.xz |
(svn r11364) -Fix (r11363): compilation broken
Diffstat (limited to 'src')
-rw-r--r-- | src/station_cmd.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp index bdd578090..664af247c 100644 --- a/src/station_cmd.cpp +++ b/src/station_cmd.cpp @@ -226,7 +226,7 @@ static bool CMSAForest(TileIndex tile) #define M(x) ((x) - STR_SV_STNAME) -enum StationNaming = { +enum StationNaming { STATIONNAMING_RAIL = 0, STATIONNAMING_ROAD = 0, STATIONNAMING_AIRPORT, @@ -234,7 +234,7 @@ enum StationNaming = { STATIONNAMING_DOCK, STATIONNAMING_BUOY, STATIONNAMING_HELIPORT, -} +}; static bool GenerateStationName(Station *st, TileIndex tile, int flag) { |