summaryrefslogtreecommitdiff
path: root/src/station_cmd.cpp
diff options
context:
space:
mode:
authorrubidium <rubidium@openttd.org>2007-06-25 10:22:48 +0000
committerrubidium <rubidium@openttd.org>2007-06-25 10:22:48 +0000
commit5c6106cbcf78cb422eec7e989b8276b7939259d5 (patch)
tree64ef685987ac780df5d0ab0f039691ff9cd13bf0 /src/station_cmd.cpp
parent1904f8e838600eb64705eb5ca2d925698a630d00 (diff)
downloadopenttd-5c6106cbcf78cb422eec7e989b8276b7939259d5.tar.xz
(svn r10320) -Fix [FS#278]: one could only build a limited number of stations before one had to rename them.
Diffstat (limited to 'src/station_cmd.cpp')
-rw-r--r--src/station_cmd.cpp6
1 files changed, 1 insertions, 5 deletions
diff --git a/src/station_cmd.cpp b/src/station_cmd.cpp
index 933c89eae..c26e218d1 100644
--- a/src/station_cmd.cpp
+++ b/src/station_cmd.cpp
@@ -285,11 +285,7 @@ static bool GenerateStationName(Station *st, TileIndex tile, int flag)
}
tmp = free_names & ((1 << 1) | (1 << 2) | (1 << 3) | (1 << 4) | (1 << 6) | (1 << 7) | (1 << 12) | (1 << 26) | (1 << 27) | (1 << 28) | (1 << 29) | (1 << 30));
- if (tmp == 0) {
- _error_message = STR_3007_TOO_MANY_STATIONS_LOADING;
- return false;
- }
- found = FindFirstBit(tmp);
+ found = (tmp == 0) ? M(STR_SV_STNAME_FALLBACK) : FindFirstBit(tmp);
done:
st->string_id = found + STR_SV_STNAME;