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 | 2bba7e860eee31477c82d4dce57d7ac94a7d8008 (patch) | |
tree | db43312cb9063663e1fbb112ce183237b3608015 /src | |
parent | f24e92c17554c292cffa61d8ef180224cca6ac9c (diff) | |
download | openttd-2bba7e860eee31477c82d4dce57d7ac94a7d8008.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) { |